Skip to content

JockeTS/backenddeveloperhub-fastapi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BackendDeveloperHub FastAPI 🚀

This is a beginner-friendly FastAPI starter project created under BackendDeveloperHub to help developers learn backend development by building real-world APIs.


🔧 Tech Stack

  • Language: Python
  • Framework: FastAPI
  • Server: Uvicorn
  • Database: SQLite (initially)

📁 Project Structure

backenddeveloperhub-fastapi/ │ ├── app/ │ ├── main.py │ ├── config.py │ ├── database.py │ │ │ ├── routes/ │ │ └── health.py │ │ │ ├── schemas/ │ │ └── health.py │ │ │ └── init.py │ ├── requirements.txt ├── README.md └── .gitignore


▶️ How to Run the Project

1️⃣ Clone the Repository

git clone https://github.com/BackendDeveloperHub/backenddeveloperhub-fastapi.git
cd backenddeveloperhub-fastapi


Create Virtual Environment:-

python -m venv venv
source venv/bin/activate      # Linux / macOS
venv\Scripts\activate         # Windows



Install Dependencies:-

pip install -r requirements.txt

4️⃣ Run the Server:-


uvicorn app.main:app --reload


About

An open-source community for learning and building backend projects using Python, FastAPI, and real-world APIs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 99.9%
  • Other 0.1%