Previously named Algorand Asset Manager aka AAM, which translates to Mango from Hindi.
Requirements
docker
anddocker-compose
must be installed
Setup
- Create a
.env
file in/api/
- Set the following environment variables in the file
API_TESTNETALGODADDRESS=<purestake node address>
API_MAINNETALGODADDRESS=<purestake node address>
API_PSTOKEN=<purestake token>
API_TOKENAUTHPASSWORD=
-
Edit the
docker-compose.yml
environment variables fordb
to set the Postgres database initialization configuration -
Update the baseURL in the
web/src/app/state.service.ts
tolocalhost:5000
if running on localhost, or to your hosted API address -
Run the following commands to start the project from the root dir:
docker-compose build
docker-compose up
The website will be running at port :4200
.
To bring the project down, just type docker-compose down
from the root dir.