Go visit the live Dashboard.
Checkout out example API requests in Swagger.
docker-compose up web
Runs on localhost:5000
.
docker-compose up --build tests
docker-compose -f docker-compose.prod.yml up --build
Uses 3 workers on gunicorn and Nginx for reverse proxy, serving static files and load balancing.
Api documentation is located on /api/docs
when runned.
Website is located in /nginx/static
. Can be viewed on localhost/static
when ran.
Warning - In script.js
we need to change the urlPrefix
variable for production.
Run migrations when server is running
docker-compose exec web flask migrate
docker-compose exec web flask upgrade