Skip to content

nadrus-online/nadrus-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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