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 2d4139d commit 980f869Copy full SHA for 980f869
app/settings.py
@@ -128,6 +128,7 @@
128
# https://docs.djangoproject.com/en/3.0/howto/static-files/
129
130
STATIC_URL = '/static/'
131
+STATIC_ROOT = os.path.join(BASE_DIR, "static")
132
133
134
JS_ROUTES_INCLUSION_LIST = [
fabfile.py
@@ -7,8 +7,6 @@ def deploy(ctx):
7
with ctx.cd("apps/django-inertia-demo"):
8
ctx.run("git pull")
9
ctx.run("pip install -r requirements.txt")
10
- #ctx.run("npm i")
11
- ctx.run("npm run build")
12
ctx.run("python manage.py collectstatic --noinput")
13
ctx.sudo("supercvisorctl restart inertia")
14
0 commit comments