We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f062ae3 commit 07fcac1Copy full SHA for 07fcac1
Makefile
@@ -1,6 +1,7 @@
1
SHELL=/bin/bash
2
3
.PHONY: dashboard
4
+.PHONY: dashboardd
5
.PHONY: local
6
.PHONY: locald
7
.PHONY: docker
@@ -15,6 +16,11 @@ SHELL=/bin/bash
15
16
dashboard:
17
streamlit run ./dashboard.py --server.port 8501
18
19
+# start streamlit dashboard as a daemon
20
+dashboardd:
21
+ rm -f dashboard.log
22
+ nohup streamlit run ./dashboard.py --server.port 8501 > dashboard.log 2>&1 &
23
+
24
# start dagster locally
25
local:
26
dagster dev -f anomstack/main.py
0 commit comments