|
1 | 1 | # Build a CRUD App with FastAPI and SQLAlchemy
|
2 | 2 |
|
3 | | -## backend |
4 | | - |
5 | | -have docker open |
6 | | -use bash: |
7 | | - |
8 | | -activate virtual env: venv\Scripts\activate.bat |
9 | | - |
10 | | -install all missing packages |
11 | | - |
12 | | -uvicorn app.main:app --reload |
13 | | - |
14 | | -open on: http://127.0.0.1:8000/docs |
15 | | - |
16 | | -docker: docker-compose up -d |
17 | | - |
18 | | -(frontend: frontend-reactjs-crud-crypto-app https://github.com/rafgger/frontend-reactjs-crud-crypto-app) |
19 | | - |
20 | 3 | In this article, I'll provide you with a simple and straightforward guide on how you can build a CRUD app with FastAPI and SQLAlchemy. The FastAPI app will run on a Starlette web server, use Pydantic for data validation, and store data in an SQLite database.
|
21 | 4 |
|
22 | 5 | 
|
|
0 commit comments