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 11install-python :
22 pipenv sync
33
4+ install-python-dev :
5+ pipenv sync --dev
6+
47install-node :
58 npm ci
69
10+ install-node-dev :
11+ npm install
12+
713collectstatic :
814 pipenv run python manage.py collectstatic --noinput
915
1016prepare : install-python install-node collectstatic
1117
18+ prepare-dev : install-python-dev install-node-dev
19+
1220migrate :
1321 pipenv run python manage.py migrate
1422
Original file line number Diff line number Diff line change 44
55Make 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 `
882 . Run migrations with ` make migrate `
993 . Run the server with ` make local ` . This runs all processes required for local development (Django, tailwind-watch, etc)
1010
You can’t perform that action at this time.
0 commit comments