Simple twitter clone with FastAPI
- Enter project root
cd fastapi-twitter-like- Install dependencies
pip install -r requirements.txt- Start FastAPI process
uvicorn app.main:app --reload- Open local API docs http://localhost:8000/docs
- Enter project root
cd fastapi-twitter-like- Run PyTest
pytest- Basic logic, endpoints and structure
- Better db choice, superuser, readme and dockerfile
- Auth roles and more endpoints
- Better endpoint logic for post management (only creator can change/delete)
- More tests