Adding run target to the Makefile.

This commit is contained in:
Víðir Valberg Guðmundsson 2017-11-05 17:46:26 +01:00
parent c3ebb6ebd3
commit e514df89f2
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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