Skip to content

Commit

Permalink
Add makefile runners
Browse files Browse the repository at this point in the history
  • Loading branch information
n1nj4t4nuk1 committed Dec 9, 2021
1 parent bc1a01c commit cae38ad
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ deps:
test:
python3 -m unittest discover -s ./tests -p '*Test.py'

# Run full app
.PHONY = run
run:
python3 main.py
# Run backoffice app
.PHONY = run/backoffice
run/backoffice:
python3 main.py --service backoffice

# Run photostore app
.PHONY = run/photostore
run/photostore:
python3 main.py --service photostore

0 comments on commit cae38ad

Please sign in to comment.