To get started with minas-morgul, you'd need to install the following tools:
The setup consists of a postgresql database and a docker containerized service delivered by Setu.
To bring up a local developer setup,
- Fill in the switch server credentials:
# Switch server credentials
- HTTP_PROXY=http://<user>:<password>@<switch-server>.setu.co:<port>
- ALL_PROXY=http://<user>:<password>@<switch-server>.setu.co:<port>
- Fill in desired database credentials
- POSTGRES_USER=minas-morgul
- POSTGRES_PASSWORD=minas-morgul
- POSTGRES_DB=minas-morgul
...
- PGUSER=minas-morgul
- PGPASSWORD=minas-morgul
- PGDATABASE=minas-morgul
- Fill other credentials as communicated.
Create a docker volume to store the postgresql database
docker volume create --name=minas-morgul_db
docker-compose up