We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 254692a commit 1a0df5dCopy full SHA for 1a0df5d
dev/local/Makefile
@@ -105,6 +105,7 @@ web:
105
@# Run the web server
106
@# MODULE_NAME specifies the location of the `app` variable, the actual WSGI application object to run.
107
@# see https://github.com/tiangolo/meinheld-gunicorn-docker#module_name
108
+ @touch $(ENV_FILE)
109
@docker run --rm -p 127.0.0.1:10080:80 \
110
$(M1) \
111
--env-file $(ENV_FILE) \
@@ -172,7 +173,7 @@ redis:
172
173
--name delphi_redis delphi_redis >$(LOG_REDIS) 2>&1 &
174
175
.PHONY=all
-all: env db web py redis
176
+all: db web py redis
177
178
.PHONY=test
179
test:
@@ -213,7 +214,3 @@ sql:
213
214
.PHONY=clean
215
clean:
216
@docker images -f "dangling=true" -q | xargs docker rmi >/dev/null 2>&1
-
217
-.PHONY=env
218
-env:
219
- @touch $(ENV_FILE)
0 commit comments