-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
29 lines (25 loc) · 1.09 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#+++++++++++++++++++++++++++++++++++++++++++++++#
# #
# MAKEFILE #
# -------- #
# #
# Contains commands for setting up a #
# development environment, linting, #
# running test, and packaging. #
# #
# - develop: creates a development #
# environment using `venv`. #
# #
# - test: runs all tests with py.test #
# and reports coverage. #
# #
# - build: builds docker images, CLI, #
# and the web UI. #
# #
# - clean: cleans build directory. #
# #
#+++++++++++++++++++++++++++++++++++++++++++++++#
all:
streamlit run app/app.py
dev:
streamlit run app/app.py