File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
install-python :
2
2
pipenv sync
3
3
4
+ install-python-dev :
5
+ pipenv sync --dev
6
+
4
7
install-node :
5
8
npm ci
6
9
10
+ install-node-dev :
11
+ npm install
12
+
7
13
collectstatic :
8
14
pipenv run python manage.py collectstatic --noinput
9
15
10
16
prepare : install-python install-node collectstatic
11
17
18
+ prepare-dev : install-python-dev install-node-dev
19
+
12
20
migrate :
13
21
pipenv run python manage.py migrate
14
22
Original file line number Diff line number Diff line change 4
4
5
5
Make sure you have [ pipenv] ( https://pipenv.pypa.io/en/latest/ ) installed in your system
6
6
7
- 1 . Install dependencies with ` make prepare `
7
+ 1 . Install dependencies with ` make prepare-dev `
8
8
2 . Run migrations with ` make migrate `
9
9
3 . Run the server with ` make local ` . This runs all processes required for local development (Django, tailwind-watch, etc)
10
10
You can’t perform that action at this time.
0 commit comments