File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ Manage $(PROJECT_NAME). Usage:
77
88make run - Run $(PROJECT_NAME ) locally.
99make install - Create local virtualenv & install dependencies.
10+ make deploy - Set up project & run locally.
1011make update - Update dependencies via Poetry and output resulting `requirements.txt`.
1112make format - Run Python code formatter & sort dependencies.
1213make lint - Check code formatting with flake8.
1617export HELP
1718
1819
19- .PHONY : run install update format lint clean help
20+ .PHONY : run install deploy update format lint clean help
2021
2122all help :
2223 @echo " $$ HELP"
@@ -41,6 +42,11 @@ install: env
4142 npm i -g less && \
4243 echo Installed dependencies in \` ${VIRTUAL_ENV} \` ;
4344
45+ .PHONY : deploy
46+ deploy :
47+ make install && \
48+ make run
49+
4450.PHONY : test
4551test : env
4652 $(LOCAL_PYTHON ) -m \
You can’t perform that action at this time.
0 commit comments