aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2019-04-16 17:58:29 +0200
committerGravatar Leon Sandøy <[email protected]>2019-04-16 17:58:29 +0200
commit1583b86a6215c879a667f304512d4708c77e9f82 (patch)
tree6e7c87375b3ce291267667be453eaedaab5ccb39 /Pipfile
parentmerging in changes from the main branch (diff)
makemigrations pipeline created, RepoData model created, and a really naive implementation of the API stuff which makes 6 requests and takes forever to load. I've found a better approach so I'm gonna switch to that next.
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index 1e106f07..62d475e4 100644
--- a/Pipfile
+++ b/Pipfile
@@ -30,3 +30,7 @@ requests = "*"
[requires]
python_version = "3.7"
+
+[scripts]
+makemigrations = "python manage.py makemigrations"
+django_shell = "python manage.py shell"