diff --git a/justfile b/justfile new file mode 100644 index 0000000..ce60b60 --- /dev/null +++ b/justfile @@ -0,0 +1,13 @@ +export DEBUG := "True" + +start: + python manage.py runserver + +migrations: + python manage.py makemigrations + +migrate: + python manage.py migrate + +shell: + python manage.py shell \ No newline at end of file