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.
In my case I forked the project and replaced Prettier and Eslint with Biome. This change also allowed me to run linting and formating in the frontend pre-commit hooks with...
I'm trying to run the full project using pipx and docker-compose. But when i try to get in the frontend path http://localhost/login it returns Bad Gateway The logs are 1....
On my M1 I get the following error when trying to run `docker-compose.yml` via `docker compose up -d`: ``` ! backend The requested image's platform (linux/amd64) does not match the...
In previous versions we had Vue as a frontend. Why you switched to React?
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/403 https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/401
I added configuration to the .env files and ran docker compose up -d I see the login page at localhost but I also see POST https://localhost/api/v1/login/access-token net::ERR_CONNECTION_REFUSED I'm not sure...
Having a hard time trying to deploy this on a GCP machine that has nginx setup and already serving a couple of websites. Is there a guide that i can...
I managed to override my DB dependency for my testing in FastAPI but when I try to apply the same technique for overriding my JWT auth dependency I still get...
``` from typing import Any, List from fastapi import APIRouter, Depends, HTTPException from sqlalchemy.orm import Session from app import crud, models, schemas from app.api import deps router = APIRouter() @router.post("/",...
Downgraded to node v16 LTS and was able to cd into frontend and do my `npm run serve` and deploy locally. However when I try to deploy everything via docker-compose...