This is the repo for the backend of Food Oasis LA.
- Language: Python 3.5
- Datastore: Postgres
- Framework: Django-Rest
- VirtualEnv
- Deployment: Heroku
Quickstart
- Install Postgres and start server.
- Clone app
git clone https://github.com/foodoasisla/backend.git
- Make a virtualenv (python 3)
mkvirtualenv --python=$(which python3) foodoasis
- Run the setup script:
make setup
Detailed instructions are available in CONTRIBUTING.md
The backend will serve a REST API that will initially consist of types and locations of fresh food within Los Angeles.
The current .CSV datasets have been organized into the following general categories: Community Gardens, Farmer's Markets, Food Banks, Grocery Stores, Supermarkets & Convenience Stores.
- Django-Rest Quickstart
- Django-Rest 7 Part Tutorial
- Intro to VirtualEnv
- Suggested helper for VirtualEnv: Virtualenvwrapper