The deployed version of the swagger documentation can be found here: https://raendom-backend.z52da5wt.xyz/docs/ or if you are running it locally here: http://localhost:3000/docs/
The automatically updated docker images can be found here: https://hub.docker.com/r/aeternity/superhero-backend
Build the setup
docker-compose up -d
Note: Node v14 is recommended.
npm i
docker run --rm --name ipfs -p 5001:5001 -d ipfs/kubo
docker run --name superhero-postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_USER=postgres -e POSTGRES_DB=superhero -p5432:5432 -d postgres
docker run --name redis -p 6379:6379 -d redis
cp .env.example .env
npm run db:create
npm start