Final Project for Code Platoon
I worked on the APIs and data for the site, the line charts and info for the map.
As of March 7th, the API will no longer be updated so there may be some missing information.
Backend command to start API:
$ cd covid_api
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
if you are having issues with psycopg2, run this command instead:
$ env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip install psycopg2
$ python manage.py runserverFrontend command to start server:
$ npm installRun the following test before committing changes:
$ npm run test