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.
I was looking into ways to prevent my staging environment from being listed on Google. I found out that the easiest way to do this apparently is to use traefik's...
Hi, I noticed that traefik is used to provide load balancing between frontend and backend under the same domain served by different containers. I also noticed that on Vue dockerfile...
Hi there, I'm trying to get some related fields via GET method, but when I try it I only get default value e.g null. Maybe there's someone who can explain...
The template does not use async at all. Is there any particular reason for that? Do celery, sqlalchemy etc work with async? How much code will have to be changed...
Just putting this here in case anyone else has this error and the fix The case is when using an Enum as a query parameter e.g. ```python class Thing(str, Enum)...
This line doesn't seem to be doing its intended purpose. https://github.com/tiangolo/full-stack-fastapi-postgresql/blob/490c554e23343eec0736b06e59b2108fdd057fdc/%7B%7Bcookiecutter.project_slug%7D%7D/backend/app/app/crud/crud_user.py#L34 With this, if the password key is not set, then it will raise a `KeyError`, so the only viable...
in utils.py there is a mistake either in 96 row or 104 , the keys: "sub" and "email" must be the same!
I'm using this repo to develop a backend being used by an Android app I'm also developing. The backend is publicly exposed, but I'd like to allow only the Android...
## Issue I tried to run `docker-compose up` with freshly, untouch generated project and got an error ``` Step 1/13 : FROM tiangolo/node-frontend:10 as build-stage ---> 46be30c070b7 Step 2/13 :...