Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 410 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 410 Bytes

Nadrus Oneline

This repository contains code for the nadrus.online platform.

Running Locally

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