File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ __pycache__/
7
7
env /
8
8
djangorestframeworkdocs.egg-info /
9
9
10
- demo /env /
11
10
demo /db.sqlite3
12
11
13
12
rest_framework_docs /static /node_modules /
Original file line number Diff line number Diff line change @@ -3,18 +3,25 @@ A demo project to get you started with DRF docs development.
3
3
4
4
5
5
### Installation
6
+ From the route of the repository:
6
7
7
8
# Create the virtual environment
8
9
pyvenv env
9
10
10
11
# Install requirements
11
12
env/bin/pip install -r requirements.txt
12
13
14
+ # Activate the environment
15
+ source env/bin/activate
16
+
17
+ # Cd Into the demo
18
+ cd demo/
19
+
13
20
# Install Django Rest Framework Docs
14
- env/bin/ pip install -e ../
21
+ pip install -e ../
15
22
16
23
# Run the project
17
- env/bin/ python manage.py runserver
24
+ python manage.py runserver
18
25
19
26
** Note** : You ** do not** need a database or to run ` migrate ` .
20
27
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments