Skip to content

Commit

Permalink
Django module name shortened to 'dj'
Browse files Browse the repository at this point in the history
  • Loading branch information
idlesign committed Oct 12, 2019
1 parent 517f7ee commit d0b3c14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions webscaff/commands/run/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from invoke import task

from . import fs, django, service, uwsgi, venv, git, certbot, pg
from . import fs, dj, service, uwsgi, venv, git, certbot, pg
from ..sys import usr, apt, utils as sys_utils
from ..utils import echo

Expand All @@ -24,7 +24,7 @@ def bootstrap(ctx):
git.bootstrap(ctx)
venv.bootstrap(ctx)
pg.bootstrap(ctx)
django.bootstrap(ctx)
dj.bootstrap(ctx)
uwsgi.bootstrap(ctx)
service.bootstrap(ctx)
certbot.bootstrap(ctx)
Expand All @@ -38,7 +38,7 @@ def bootstrap(ctx):
def rollout(ctx):
"""Updates remote files from remote repository and rolls out project."""
git.pull(ctx)
django.rollout(ctx)
dj.rollout(ctx)
uwsgi.reload_touch()


Expand Down

0 comments on commit d0b3c14

Please sign in to comment.