diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -14,11 +14,20 @@ The following dependencies are required to build the wallet: - pnpm - zip +## Prepraring the repository + +After running clone you should boostrap the repository. + +```shell +./boostrap +``` + ## Installation The CLI version of the wallet supports the normal GNU installation process. ```shell +./bootstrap ./configure [ --prefix=$PREFIX ] && make install ``` @@ -171,10 +180,10 @@ make anastasis-webui ``` It will run the test suite and put everything into the dist folder under the project root (packages/anastasis-webui). -You can run the SPA directly using the file:// protocol. +You can copy the SPA directly to work local webserver. ```shell -firefox packages/anastasis-webui/dist/ui.html +cp -Tr ./packages/anastasis-webui/dist/prod /var/www/html/anastasis ``` Additionally you can create a zip file with the content to upload into a web server: |