This repository contains code for the nadrus.online platform.
From the project's main directory, you can run using gunicorn
or using flask
directly:
# run two workers using the gunicorn webserver
gunicorn -w 2 "app:create_app('production')"
or
# simple run using the flask server
env FLASK_APP="app:create_app('dev')" python -m flask run