fastapi-react icon indicating copy to clipboard operation
fastapi-react copied to clipboard

🚀 Cookiecutter Template for FastAPI + React Projects. Using PostgreSQL, SQLAlchemy, and Docker

Results 45 fastapi-react issues
Sort by recently updated
recently updated
newest added

As we all know storing tokens in local storage is bad security Will be great to either change the authentication flow to use HttpOnly cookie as opposed to the local...

Probably due to react version problem(current version=^16.13.1, problem solved in 17.0.2), the following depreciation warning appears on chrome. Will changing the package.json file resolve the issue or is this problem...

Hi @Buuntu I really like your boilerplate here - there's a lot of good practices to study I think. I stumbled upon one thing that puzzles me a bit though....

The current signature is `def get_user_by_email(db: Session, email: str) -> schemas.UserBase:` but I believe this to be incorrect. It should be `def get_user_by_email(db: Session, email: str) -> schemas.User:`. The reason...

Hey, I've been working on a smallish API using this project and ran into an interesting thing with the celery worker. As of right now, the docker-compose file does not...

There should be routes that trigger an email for "forgot" and "reset" password options. These can be celery tasks but probably need a separate container for a simple SMTP server...

enhancement
good first issue

Wait for the `postgres` Docker Compose service to become available instead of naively sleeping for 5 seconds before running Alembic migrations. Implemented using the popular `wait-for-it.sh` script (added to the...

Error: Objects are not valid as a React child (found: TypeError: Failed to fetch). If you meant to render a collection of children, use an array instead. in code (at...

This has to do with not waiting for frontend and backend containers to be started before the Nginx container loads. Using something like `depends_on` in Docker won't work because the...