@@ -19,6 +19,8 @@ pip install PyJWT
1919pip install requests
2020pip install pandas
2121pip install boto3
22+ pip install aiosmtplib
23+ pip install cryptography
2224```
2325
2426### .env file
@@ -75,34 +77,45 @@ project-root/
7577│ │ ├── session.py
7678│ │ └── init_db.py
7779│ ├── handlers/
78- │ │ ├── email_handler.py
79- │ │ ├── user_handler.py
80+ │ │ ├── comment_handler.py
8081│ │ ├── disaster_handler.py
82+ │ │ ├── email_handler.py
83+ │ │ ├── like_handler.py
8184│ │ ├── post_handler.py
82- │ │ └── shelter_handler.py
85+ │ │ ├── shelter_handler.py
86+ │ │ ├── upload_test.py
87+ │ │ └── user_handler.py
8388│ ├── models/
89+ │ │ ├── comment_model.py
90+ │ │ ├── disaster_model.py
8491│ │ ├── region_model.py
8592│ │ ├── disaster_region_model.py
86- │ │ ├── user_model.py
87- │ │ ├── disaster_model.py
93+ │ │ ├── like_model.py
8894│ │ ├── post_model.py
89- │ │ └── shelter_models.py
95+ │ │ ├── shelter_model.py
96+ │ │ └── user_model.py
9097│ ├── schemas/
98+ │ │ ├── comment_schema.py
9199│ │ ├── common_schema.py
92- │ │ ├── user_schema.py
100+ │ │ ├── disaster_schema.py
101+ │ │ ├── email_schema.py
102+ │ │ ├── like_schema.py
93103│ │ ├── post_schema.py
94- │ │ └── shelter_schema.py
95- │ ├── services/
96- │ │ ├── region_service.py
104+ │ │ ├── shelter_schema.py
105+ │ │ └── user_schema.py
106+ │ ├── services/
107+ │ │ ├── comment_service.py
97108│ │ ├── disaster_region_service.py
98- │ │ ├── email_service.py
99- │ │ ├── user_service.py
100109│ │ ├── disaster_service.py
110+ │ │ ├── email_service.py
111+ │ │ ├── like_service.py
101112│ │ ├── post_service.py
102- │ │ └── shelter_service.py
113+ │ │ ├── region_service.py
114+ │ │ ├── shelter_service.py
115+ │ │ └── user_service.py
103116│ └── utils/
104- │ ├── s3_util.py
105117│ ├── jwt_util.py
118+ │ ├── s3_util.py
106119│ └── redis_util.py
107120```
108121
0 commit comments