From b1d9bed436dcad84fd83dcef86086e477d4939c8 Mon Sep 17 00:00:00 2001 From: Rushil Umaretiya Date: Thu, 12 Nov 2020 11:24:42 -0500 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index b05e580..ea0d07d 100644 --- a/README.md +++ b/README.md @@ -1 +1,17 @@ # Drive Pipeline +A Django polling app built for Will Fuentes + +## Getting Started + +Setup project environment with [virtualenv](https://virtualenv.pypa.io) and [pip](https://pip.pypa.io). + +```bash +$ virtualenv venv +$ source venv/bin/activate +$ pip install -r requirements.txt + +$ python manage.py migrate +# You'll be asked to enter in the secrets for the project here + +$ python manage.py runserver +```