wallet icon indicating copy to clipboard operation
wallet copied to clipboard

How to self-host

Open pepa65 opened this issue 1 year ago • 1 comments

It would be an important showcase for AWallet if people could see that they could easily self-host this. From the description, it seems that if people have a regular webserver, this should work, as long as they have all the required files.

What is the directory tree that should be served? Can it easily be obtained??

pepa65 avatar Jan 24 '24 11:01 pepa65

Hi, the build of the main branch is deployed to "gh-pages" branch: https://github.com/scholtz/wallet/tree/gh-pages

So if you do not know how to use docker, I recommend self host at any webserver (apache,nginx,iis..) and add there the files. Build is pure html with javascripts.

If you have installed docker desktop, you can use the command

docker run --name awallet -d -p 8080:8080 scholtz2/a-wallet:1.2024.02.06-main

to run it localy and you can access it at http://localhost:8080/

If you are little more advanced, feel free to git clone the project and run in the vscode using npm run serve

scholtz avatar Feb 06 '24 20:02 scholtz