We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b548958 commit 71ec18bCopy full SHA for 71ec18b
build.sh
@@ -0,0 +1,12 @@
1
+#!/usr/bin/env bash
2
+# Exit on error
3
+set -o errexit
4
+
5
+# Modify this line as needed for your package manager (pip, poetry, etc.)
6
+poetry install
7
8
+# Convert static asset files
9
+python manage.py collectstatic --no-input
10
11
+# Apply any outstanding database migrations
12
+python manage.py migrate
0 commit comments