https://github.com/ryan-ahn/boilerplate-fastapi-starter
FastAPI 프로젝트 시작을 위한 보일러플레이트
https://github.com/ryan-ahn/boilerplate-fastapi-starter
fastapi python
Last synced: about 1 month ago
JSON representation
FastAPI 프로젝트 시작을 위한 보일러플레이트
- Host: GitHub
- URL: https://github.com/ryan-ahn/boilerplate-fastapi-starter
- Owner: ryan-ahn
- Created: 2024-02-26T02:54:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T05:12:14.000Z (over 2 years ago)
- Last Synced: 2025-05-02T17:03:55.847Z (about 1 year ago)
- Topics: fastapi, python
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ryan's FastAPI Starter



## Setting Stack
- Language : Python
- Framework : FastAPI
- Database : MySql, MongoDB
- ORM, ODM : Prisma, Mongoose
## Project Start
1. Installation
```
$ git clone https://github.com/ryan-ahn/boilerplate-fastapi-starter.git
$ cd boilerplate-fastapi-starter
```
2. Run Project
```
$ uvicorn application:app --reload
```
## Code Structure
⎣ **core** - configuration
⎣ **controllers** - error handling, business logic controls
⎣ **constants** - static resource
⎣ **dependency** - dependencies
⎣ **database** - schema, query
⎣ **routes** - routes
⎣ **services** - service logic controls
⎣ **utils** - connector, handler, helper