aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.gitignore1
-rw-r--r--Makefile3
2 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 9cfd81c..15cf913 100644
--- a/.gitignore
+++ b/.gitignore
@@ -331,6 +331,7 @@ pyblackbird_cc/media/
.pytest_cache/
.ipython/
.env
+.env-prod
.envs/*
.envs/.local/
diff --git a/Makefile b/Makefile
index 4744c12..b2b27e3 100644
--- a/Makefile
+++ b/Makefile
@@ -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 .