Skip to content

Commit e9a5157

Browse files
committed
updated Makefile for first start
1 parent 37f75d9 commit e9a5157

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
install-python:
22
pipenv sync
33

4+
install-python-dev:
5+
pipenv sync --dev
6+
47
install-node:
58
npm ci
69

10+
install-node-dev:
11+
npm install
12+
713
collectstatic:
814
pipenv run python manage.py collectstatic --noinput
915

1016
prepare: install-python install-node collectstatic
1117

18+
prepare-dev: install-python-dev install-node-dev
19+
1220
migrate:
1321
pipenv run python manage.py migrate
1422

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Make sure you have [pipenv](https://pipenv.pypa.io/en/latest/) installed in your system
66

7-
1. Install dependencies with `make prepare`
7+
1. Install dependencies with `make prepare-dev`
88
2. Run migrations with `make migrate`
99
3. Run the server with `make local`. This runs all processes required for local development (Django, tailwind-watch, etc)
1010

0 commit comments

Comments
 (0)