Dreipfelt commited on
Commit
3d42305
·
1 Parent(s): 9e555c2

oasis streamlit app

Browse files
Files changed (4) hide show
  1. Dockerfile +0 -0
  2. README.md +1 -1
  3. app.py +7 -0
  4. requirements.txt +0 -0
Dockerfile ADDED
File without changes
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: MyFirstSpaceName
3
  emoji: 🔥
4
  colorFrom: gray
5
  colorTo: green
 
1
  ---
2
+ title: oasis-streamlit-app
3
  emoji: 🔥
4
  colorFrom: gray
5
  colorTo: green
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI()
4
+
5
+ @app.get("/")
6
+ def greet_json():
7
+ return {"Hello": "World!"}
requirements.txt ADDED
File without changes