Create empty DRF project

This commit is contained in:
2018-05-03 20:11:49 +00:00
parent 253972340c
commit 4584d459b7
13 changed files with 197 additions and 3 deletions
+8 -3
View File
@@ -3,15 +3,20 @@
## Development (Quickstart)
* Install dependencies:
```text
```bash
$ sudo apt-get install python3 python3-pip virtualenv python3-virtualenv
```
* Setup the virtual environment with python3
```text
```bash
$ virtualenv -p python3 env
```
* Activate the environment, install dependencies, perform DB migration
```text
```bash
$ . env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ python manage.py migrate