full-stack-fastapi-template
full-stack-fastapi-template copied to clipboard
Full stack, modern web application template. Using FastAPI, React, SQLModel, PostgreSQL, Docker, GitHub Actions, automatic HTTPS and more.
Fix an issue where `read_user_by_id` would fail to return if the requested user ID did not exist. * Return `404 - Not Found` when ID does not exist. * Request...
### Privileged issue - [X] I'm @tiangolo or he asked me directly to create an issue here. ### Issue Content Since Nextjs has dominate the frontend world, i want to...
This change will prompt developers to install the MJML extension when they open the project in vscode.
This change effectively prevents a playwright or a backend test from running when you for example update a README.md file. Currently when updating certain files that do not effect the...
Making it a background task improves responsiveness and user experience. For future If you need to perform heavy background computation and you don't necessarily need it to be run by...
If users do not have the min version installed, docker compose watch will fail. See https://docs.docker.com/compose/how-tos/file-watch/
On my machine, the command provided to generate a password (using python3 specifically), results in a 44 character string, while the maximum allowable character length in the model is 40,...
### Privileged issue - [x] I'm @tiangolo or he asked me directly to create an issue here. ### Issue Content Hello, I am experiencing issues with my GitHub Actions workflow...
Revise Docker setup to enhance the development experience by enabling live reloading and adjusting port mappings for the frontend service. Update Vite configuration to allow access from the container and...
BEFORE: user_in = UserCreate(email=email, password=password, disabled=True) AFTER: Use proper is_active field