Create empty DRF project
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user