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 have a question about deployment using the ideas from dockerswarm.rocks. Is the Traefik service found here: https://dockerswarm.rocks/traefik/ ``` version: '3.3' services: traefik: # Use the latest Traefik image image:...
We have deployed according to the steps in https://github.com/tiangolo/full-stack-fastapi-postgresql/issues/322. However, we have a problem that only seems to affect some clients: ``` $ curl -v 'https://stag.foo.com/' * Trying ... *...
``` from typing import TYPE_CHECKING from sqlalchemy import Column, ForeignKey, Integer, String from sqlalchemy.orm import relationship from app.db.base_class import Base if TYPE_CHECKING: from .user import User # noqa: F401 class...
Hi all, Short question, what would be the best direction to use an existing postgres database on another server? Or should I not bother using this nice template. Regards, Rob
The readme files albeit informative leaves some details out for newbies, I want to know how to write a backend and a frontend using this API, do I have to...
Hey, I have a general architecture question. I see in your example that you hide all endpoints behind `app_v1` folder. If several of them would be reused in v2, v3...
I couldn't figure out why we use Celery ? I have read in documentation that it is used for workers that can import and use models and code from the...
gitlab ci test fail, local tests running fine. `============================= test session starts ============================== platform linux -- Python 3.7.7, pytest-5.4.3, py-1.8.2, pluggy-0.13.1 rootdir: /app plugins: celery-4.4.5, cov-2.10.0 collected 25 items app/tests/api/api_v1/test_celery.py...
Logged into the vue UI and attempted to change the Full Name value resulted in a key error for the following line Error Output ``` backend_1 | File "./app/crud/crud_user.py", line...
- [x] Upgrade to SQLAlchemy 1.4, which supports AsyncIO. [Full guide here](https://docs.sqlalchemy.org/en/14/orm/extensions/asyncio.html#asynchronous-i-o-asyncio). - [x] Convert API endpoints to asyncio. - [ ] Fix Celery. Addresses: #315