DhanushMahesh commited on
Commit
86286c3
·
0 Parent(s):

deploy setup

Browse files
Files changed (4) hide show
  1. Dockerfile +17 -0
  2. README.md +11 -0
  3. app/main.py +15 -0
  4. requirements.txt +2 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ FROM python:3.9
3
+
4
+
5
+ WORKDIR /code
6
+
7
+
8
+ COPY ./requirements.txt /code/requirements.txt
9
+
10
+
11
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
+
13
+
14
+ COPY ./app /code/app
15
+
16
+
17
+ CMD ["fastapi", "run", "app/main.py", "--port", "80"]
README.md ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Sample
3
+ emoji: 👁
4
+ colorFrom: purple
5
+ colorTo: blue
6
+ sdk: docker
7
+ pinned: false
8
+ license: apache-2.0
9
+ ---
10
+
11
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app/main.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union
2
+
3
+ from fastapi import FastAPI
4
+
5
+ app = FastAPI()
6
+
7
+
8
+ @app.get("/")
9
+ def read_root():
10
+ return {"Hello": "World"}
11
+
12
+
13
+ @app.get("/items/{item_id}")
14
+ def read_item(item_id: int, q: Union[str, None] = None):
15
+ return {"item_id": item_id, "q": q}
requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ fastapi[standard]>=0.113.0,<0.114.0
2
+ pydantic>=2.7.0,<3.0.0