This Project describes CRUD operations using FastAPI (REST API) and using it in React basic frontend.
- Python 3.12
- FastAPI
- npm 10.5
- React 18.2
- React-Dom 18.2
-
Setting up Backend Environment to run REST APIs
cd backend
-
Create Virtual Environment
python -m venv venv
-
Install dependencies
pip install -r requirements.txt
-
Run the backend server
python main.py
-
Setting up Frontend Environment
npm run start