@@ -6,47 +6,47 @@ SITE_ID ?= 2
66
77run : # # Run django server
88run :
9- pipenv run python manage.py runserver 0.0.0.0:8000
9+ uv run python manage.py runserver 0.0.0.0:8000
1010
1111
1212migrations : # # Make migrations
1313migrations :
14- pipenv run python manage.py makemigrations
15- pipenv run python manage.py migrate
14+ uv run python manage.py makemigrations
15+ uv run python manage.py migrate
1616
1717
1818admin : # # Add an admin user
1919admin :
20- pipenv run python manage.py createsuperuser
20+ uv run python manage.py createsuperuser
2121
2222
2323user :
24- pipenv run python add_user.py
24+ uv run python add_user.py
2525
2626
2727tests : # # Run tests
2828tests :
29- pipenv run python manage.py test courses.tests
29+ uv run python manage.py test courses.tests
3030
3131
3232data : # # Add data to database
3333data : migrations
34- pipenv run python add_data.py
34+ uv run python add_data.py
3535
3636test_data : data
37- pipenv run python add_more_test_data.py
37+ uv run python add_more_test_data.py
3838
3939shell : # # Run django shell
4040shell :
41- pipenv run python manage.py shell
41+ uv run python manage.py shell
4242
4343
4444tunnel_prod : # # Open tunnel to prod
4545 bash tunnel-prod.sh
4646
4747notebook : # # Run a jupyter notebook
4848notebook :
49- pipenv run jupyter notebook
49+ uv run jupyter notebook
5050
5151
5252docker_build : # # Build docker image
0 commit comments