diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-29 15:21:58 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-29 15:21:58 +0100 |
commit | dc17e00e62a7f9d090b95601467765d1f613f572 (patch) | |
tree | bc8a25cdbd53599df7e9c1577232b261d61bd233 /Makefile | |
parent | d427f900081dbc6d1194056b8c6b58ec0656f702 (diff) |
Adds .env-prod - intended to be pushed to server
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 . |