File tree 5 files changed +29
-8
lines changed
5 files changed +29
-8
lines changed Original file line number Diff line number Diff line change @@ -138,4 +138,4 @@ __azurite_db*__.json
138
138
# Serverless directories
139
139
.serverless
140
140
node_modules
141
- aws_lambda_fastapi_venv
141
+ . aws_lambda_fastapi_venv
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ pip3 install -r requirements.txt
24
24
25
25
# run project with uvicorn
26
26
uvicorn " fastapi_project.main:app" --reload --port=8000
27
+
28
+ # or, run bash with shell
29
+ ./run_fastapi_project.sh
27
30
```
28
31
29
32
# deploy on production
@@ -33,11 +36,12 @@ uvicorn "fastapi_project.main:app" --reload --port=8000
33
36
set secrets ` SERVERLESS_ACCESS_KEY ` , ` AWS_ACCESS_KEY_ID ` and ` AWS_SECRET_ACCESS_KEY `
34
37
35
38
## serverless
36
- * set your data
39
+
40
+ * set your own data
37
41
38
42
``` bash
39
43
# serverless.yml
40
- org: code4mk
44
+ org: ****
41
45
app: demo-app-api-fastapi
42
46
service: demo-app-api-fastapi
43
47
```
@@ -49,4 +53,9 @@ service: demo-app-api-fastapi
49
53
```
50
54
51
55
56
+ # project route
52
57
58
+ ``` bash
59
+ http://localhost:8000/api/v1/users
60
+ http://localhost:8000/health
61
+ ```
Original file line number Diff line number Diff line change
1
+ from fastapi import APIRouter , status
2
+ from fastapi .responses import JSONResponse
3
+
4
+ # Create a api router
5
+ router = APIRouter ()
6
+
7
+ # Health check route
8
+ @router .get ("/" )
9
+ async def health_check ():
10
+ data = {"status" : "ok" }
11
+ return JSONResponse (content = data , status_code = status .HTTP_200_OK )
Original file line number Diff line number Diff line change 1
1
from fastapi import APIRouter , status , Request
2
2
from fastapi .responses import JSONResponse
3
3
4
- # Create a FastAPI app
4
+ # Create a api router
5
5
router = APIRouter ()
6
6
7
7
# root index
Original file line number Diff line number Diff line change 2
2
from fastapi import FastAPI
3
3
from dotenv import load_dotenv
4
4
from fastapi .middleware .cors import CORSMiddleware
5
- from fastapi_project .api import root_index
5
+ from fastapi_project .api import health , root_index
6
6
7
7
# Load .env file
8
8
load_dotenv ()
14
14
def create_application ():
15
15
application = FastAPI ()
16
16
17
- # Include the root index router
17
+ # Include the root index and health router
18
18
application .include_router (root_index .router )
19
-
19
+ application .include_router (health .router , prefix = "/health" )
20
+
20
21
21
22
if load_sql_project == True :
22
23
print ("SQL_PROJECT is enabled" )
23
24
# Include additional routers if LOAD_SQL_PROJECT is enabled
24
25
from fastapi_project .api .v1 import user
25
- application .include_router (user .router )
26
+ application .include_router (user .router , prefix = "/api/v1" )
26
27
27
28
# Add CORS middleware
28
29
# In production, replace the "*" with the actual frontend URL
You can’t perform that action at this time.
0 commit comments