Spaces:
Sleeping
Sleeping
here we go
Browse files
Makefile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BASE="nature.datahub.berkeley.edu"
|
2 |
+
MAKEFLAGS += s
|
3 |
+
|
4 |
+
.PHONY: serve
|
5 |
+
serve:
|
6 |
+
@echo "\n 🌎 preview at: \033[1m https://${BASE}${JUPYTERHUB_SERVICE_PREFIX}proxy/8501/index.html \033[0m \n"
|
7 |
+
streamlit run app.py 1> /dev/null 2>&1
|
8 |
+
|
README.md
CHANGED
@@ -8,4 +8,12 @@ pinned: false
|
|
8 |
license: bsd-2-clause
|
9 |
---
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
|
|
8 |
license: bsd-2-clause
|
9 |
---
|
10 |
|
11 |
+
For ESPM-157 students using <https://nature.datahub.berkeley.edu> servers:
|
12 |
+
To preview locally, use
|
13 |
+
|
14 |
+
```
|
15 |
+
make
|
16 |
+
```
|
17 |
+
|
18 |
+
and click the link provided
|
19 |
|