aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-29 15:21:58 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-29 15:21:58 +0100
commitdc17e00e62a7f9d090b95601467765d1f613f572 (patch)
treebc8a25cdbd53599df7e9c1577232b261d61bd233 /Makefile
parentd427f900081dbc6d1194056b8c6b58ec0656f702 (diff)
Adds .env-prod - intended to be pushed to server
Diffstat (limited to '')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
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 .