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 | |
parent | d427f900081dbc6d1194056b8c6b58ec0656f702 (diff) |
Adds .env-prod - intended to be pushed to server
-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 . |