An application that displays and reports happenings on a map of Barovia.
- Docker
- Docker Compose
These instructions will install the application stack setup for development. Volumes are mounted to the host to allow for quick code iteration and hot reload is enabled on both the frontend and backend.
./run npm ci
./run poetry install
./run start
Note: Any Django manage
subcommand can be run this way.
./run manage createsuperuser
./run manage migrate
To follow all container logs use the following script command:
./run logs
At this point all services should be up and running navigate to the following URLs:
- Frontend: http://localhost:3000
- Backend Admin: http://localhost:8000/admin
- Backend API: http://localhost:8000/api
Not yet implemented