KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
blogs-app-fastapi
★ 27
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
bluefield-kryptonite
:
Benchmark application for BlueField-3/ConnectX-7 DOCA Flow CT
answer-chat-app
:
Open source chat app using Exa's Answer endpoint
fishbot_nav
:
No description available.
MIM-Survey
:
This repository categorizes the papers about masked image modeling according to their main contributions. The classification is based on our survey: https://arxiv.org/abs/2408.06687.
kinghy-rag-ai-back
:
基于SpringAi及SpringAiAlibaba实现Rag检索增强生成个人知识库问答系统
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
blogs-app-fastapi
?
Download (.md)
# blogs-app-fastapi Simple Blogs app made using [FastAPI](https://github.com/tiangolo/fastapi) ## ScreenShot <div> <img src="images/screenshot1.png" width="1024" height="650" /> </div> ## Web Routes All routes are available on ``/docs`` or ``/redoc`` paths with Swagger or ReDoc. ## Features - API Docs - ORM using SQLAlchemy - JWT Authentication - Pydantic Schemas ## Quick Start First, create a virtual env: ```bash python3 -m venv env ``` Second activate the virtual env: ```bash source env/bin/activate ``` Next, install requirements from requirements.txt: ```bash pip3 install -r requirements.txt ``` For running the app in debug mode: ```bash uvicorn blog.main:app --reload ```