forked from evjrob/birbcam
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
22 lines (16 loc) · 766 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
help:
@echo 'Makefile for AI Critter '
@echo ' '
@echo 'Usage: '
@echo ' make up Start ai-critter '
@echo ' make build Build the docker containers '
@echo ' make create_db Create the modeldb '
@echo ' '
up:
docker-compose up
start:
docker-compose up --detach
build:
docker-compose build --parallel
create_db:
docker-compose run webapp python3 util.py create_db