Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.01 KB

README.md

File metadata and controls

52 lines (38 loc) · 1.01 KB

Exposure API

Flask API backend for the Exposure app project to track exposure risks to COVID-19

Developing

I'm using python 3.6.8 but any version 3.6+ is probably fine

From root...

Create a virtual environment

python -m venv venv

Start your virtual environment

On windows:

venv\Scripts\Activate

or Linux:

. venv/bin/activate

Install requirements

pip install -r requirements.txt

Updating requirements (if you need to add packages, make sure they get added to requirements.txt. Easiest way to do this (while in your virtual environment to avoid pushing extraneous dependencies))

pip freeze > requirements.txt

Running

flask run

Note: We have a .env file for a reason. Plz use it thank you

Contributing

Contribution guidelines WIP

Links

Interested in contributing?