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.
Hello, @tiangolo I follow all steps in [full-stack-fastapi-template (latest)](https://github.com/tiangolo/full-stack-fastapi-template/tree/master),the code run in a remote machine, and I login from another machine. The problem is, I can go to `ip:8090`, `ip:8080`,...
In today's fast-paced world, technological advancements are not just a luxury but a necessity. From enhancing communication to revolutionizing industries, technology plays a pivotal role in shaping our society. Embracing...
Delete a leftover celery file. From https://github.com/tiangolo/full-stack-fastapi-template/pull/694#issuecomment-1999493111
After running the installation instructions, there appears to be two files containing secrets. Neither of which is in the gitignore and one of which is already versioned: ``` .env .copier/.copier-answers.yml.jinja...
This would allow having the dev environment automatically set up and allow using code spaces. https://code.visualstudio.com/docs/devcontainers/containers
[Enabling instructions (GitHub.com)](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository) It would be way simpler to seperate discussions regarding the project and issues regarding this project. e.g. I have a query with regards to the file [celeryworker_pre_start](https://github.com/tiangolo/full-stack-fastapi-template/blob/master/backend/app/celeryworker_pre_start.py)...
I have python3 installed and have configured an `alias python="python3"` in my `.bash_aliases` file, so both `python` and `python3` cmdlets are available. DESKTOP-0U5S399:~$ python --version Python 3.8.10 DESKTOP-0U5S399:~$ python3 --version...
Fixes #724 by following means: - Adding `.env` to the `.gitignore` shared between the template and the generated project, - Moving current `.env` to `.env.jinja` and templating it accordingly, so...
Currently the instructions in frontend/README.md about how to run the app without a frontend are not complete. This PR adds 1 step into the frontend/README.md instructions so that the following...
The first line of the `CRUDBase` update method is: `obj_data = jsonable_encoder(db_obj)` This now stack overflows when using fastapi 0.61. We need an updated base CRUD pattern in this project,...