diff options
Diffstat (limited to '')
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -331,6 +331,7 @@ pyblackbird_cc/media/ .pytest_cache/ .ipython/ .env +.env-prod .envs/* .envs/.local/ @@ -2,6 +2,9 @@ all: build run migrate collectstatic start: build run migrate collectstatic +sync-env: + scp .env-prod substracker-web:code/pyblackbird_cc/.env + build: @docker build -f compose/production/django/Dockerfile -t pyblackbird_cc:latest . |