Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 471 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (12 loc) · 471 Bytes

Contributing

Environment setup for development

  1. Create virtual environment
  2. Install packages in requirements.txt file
  3. For testing install requests

On windows create a env.bat file in the parent folder. The contents of the bat file are:

set FLASK_APP=app/main.py
set FLASK_ENV=development

Before starting the application run the bat script on terminal: env.bat Once the environment variables are set, start the application using flask run.