From e514df89f2ec08a142d544bab27c53c9e8f350c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Sun, 5 Nov 2017 17:46:26 +0100 Subject: [PATCH] Adding run target to the Makefile. --- Makefile | 4 +++- README.md | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9ed91da6..439b3404 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: copy_environment_settings build db_up sleep migrate bootstrap web_up +all: copy_environment_settings build db_up sleep migrate bootstrap copy_environment_settings: cp src/bornhack/dev_environment_settings.py src/bornhack/environment_settings.py @@ -20,3 +20,5 @@ sleep: web_up: docker-compose up web + +run: db_up web_up diff --git a/README.md b/README.md index 2c849a3c..aed1c041 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ If you have docker-compose you can use the included make file. Like so: $ make +This will create everything. You can now start the project running: + + $ make run + ### Manual way