[ ] file stucture should follow something like these guidelines and include models.py, views.py, urls.py
[ ] set up connection to the database maybe these instructions will help (DO NOT SAVE USERNAME/PASSWORD DIRECTLY IN FILES use .env or other recommended config setup that won't get pushed to github)
[ ] create test structure using pytest-django so that we can test against the db
[ ] write test for table creation and query to see that everything is connected, then drop them
Create geodjango app setup in
backend/api/
https://github.com/uchicago-capp-30320/RouteRangers/tree/main/backend/api. To get an initial pass through all of the layers we should test a request that pulls the bus stop points for a given city.models.py
,views.py
,urls.py
pytest-django
so that we can test against the db