Skip to content

Commit 9ffcd71

Browse files
committed
Fix Makefile to include app.local.env, now allows setup IMAGE_VERSION in app.local.env
1 parent 12ae8e3 commit 9ffcd71

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ RUN = docker-compose run app
33
RUN_DB = docker-compose run postgresql
44
RUN_WEB = docker-compose run web
55

6+
include app.local.env
7+
export
8+
69
install:
710
@make secret
811
@touch app.local.env

app.local.env.example

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
RAILS_ENV=production
22
# RAILS_LOG_TO_STDOUT=true
33

4-
# Nginx
5-
# NGINX_WORKER_CONNECTIONS=65535
6-
74
# Database
85
DATABASE_URL=postgres://postgres:@postgresql:5432/homeland
96
# DATABASE_POOL=64
@@ -12,4 +9,3 @@ REDIS_URL=redis://redis:6379/1
129
# App Config
1310
# domain=localhost
1411
15-
# asset_host=

0 commit comments

Comments
 (0)