|
4 | 4 |
|
5 | 5 | Accelerate your next web development project with this FastAPI/Nuxt.js base project generator.
|
6 | 6 |
|
7 |
| -This project is a comprehensively updated fork of [Sebastián Ramírez's](https://github.com/tiangolo) [Full Stack FastAPI and PostgreSQL Base Project Generator](https://github.com/tiangolo/full-stack-fastapi-postgresql). FastAPI is updated to version 0.88 (November 2022), SQLAlchemy to version 1.4.45 (December 2022), and the frontend to Nuxt 3 (November 2022). |
| 7 | +This project is a comprehensively updated fork of [Sebastián Ramírez's](https://github.com/tiangolo) [Full Stack FastAPI and PostgreSQL Base Project Generator](https://github.com/tiangolo/full-stack-fastapi-postgresql). FastAPI is updated to version 0.88 (November 2022), SQLAlchemy to version 2.0 (January 2023), and the frontend to Nuxt 3.2 (February 2023). |
8 | 8 |
|
9 | 9 | Generate a backend and frontend stack using Python, including interactive API documentation.
|
10 | 10 |
|
@@ -49,7 +49,7 @@ Generate a backend and frontend stack using Python, including interactive API do
|
49 | 49 | - **Docker Compose** integration and optimization for local development.
|
50 | 50 | - **Authentication** user management schemas, models, crud and apis already built, with OAuth2 JWT token support & default hashing. Offers _magic link_ authentication, with password fallback, with cookie management, including `access` and `refresh` tokens.
|
51 | 51 | - [**FastAPI**](https://github.com/tiangolo/fastapi) backend with [Inboard](https://inboard.bws.bio/) one-repo Docker images:
|
52 |
| - - **SQLAlchemy** version 1.4 support for models. |
| 52 | + - **SQLAlchemy** version 2.0 support for models. |
53 | 53 | - **MJML** templates for common email transactions.
|
54 | 54 | - **Metadata Schema** based on [Dublin Core](https://www.dublincore.org/specifications/dublin-core/dcmi-terms/#section-3) for inheritance.
|
55 | 55 | - **Common CRUD** support via generic inheritance.
|
@@ -156,7 +156,7 @@ And start them:
|
156 | 156 | docker-compose up -d
|
157 | 157 | ```
|
158 | 158 |
|
159 |
| -**NOTE:** I find that the **Nuxt** container does not run well in development mode, and does not refresh on changes. In particular, `nuxt/content` is very unpredictable in dev mode running in the container. It is far better to run the `frontend` outside of the container to take advantage of live refresh. |
| 159 | +**NOTE:** If you install new Node packages, you will need to rebuild the `frontend`. I also find that `frontend` behaves inconsistently in development mode, and may not refresh on changes. In particular, `nuxt/content` is very unpredictable in dev mode running in the container. You may have more success running the `frontend` outside of the container to take advantage of live refresh. |
160 | 160 |
|
161 | 161 | Change into the `/frontend` folder, and:
|
162 | 162 |
|
@@ -215,6 +215,15 @@ After using this generator, your new project (the directory created) will contai
|
215 | 215 |
|
216 | 216 | ## Release Notes
|
217 | 217 |
|
| 218 | +### 0.7.1 |
| 219 | + |
| 220 | +- SQLAlchemy 1.4 -> 2.0 |
| 221 | +- Nuxt.js 3.0 -> 3.2.2 |
| 222 | +- Fixed: `tokenUrl` in `app/api/deps.py`. Thanks to @Choiuijin1125. |
| 223 | +- Fixed: SMTP options for TLS must be `ssl`. Thanks to @raouldo. |
| 224 | +- Fixed: `libgeos` is a dependency for `shapely` which is a dependency for `neomodel`, and which doesn't appear to be installed correctly on Macs. Thanks to @valsha and @Mocha-L. |
| 225 | +- Fixed: `frontend` fails to start in development. Thanks to @pabloapast and @dividor. |
| 226 | + |
218 | 227 | ### 0.7.0
|
219 | 228 |
|
220 | 229 | - New feature: magic (email-based) login, with password fallback
|
|
0 commit comments