@adriankulik/create-fullstack-app 1.14.0 → 1.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -39,14 +39,21 @@ You will be prompted to choose a project name, your preferred frontend, and back
39
39
  - Flask (v3.1.3)
40
40
  - .NET (v10.0.11)
41
41
  - Node.js Express (v5.2.1)
42
- - **Database**: PostgreSQL (v15) with Alembic (v1.19.1), SQLAlchemy (v2.0.52), and Psycopg2 (v2.9.12).
42
+ - **Database**: PostgreSQL (v15) configured via `docker-compose`. Tooling includes:
43
+ - **Migrations**: Alembic (v1.19.1), SQLAlchemy (v2.0.52), and Psycopg2 (v2.9.12) are used universally for database migrations across all frameworks.
44
+ - **Drivers**: FastAPI/Flask use SQLAlchemy/Psycopg2, Node.js Express uses `pg` (v8.23.0), and .NET uses `Npgsql` (v10.0.3).
43
45
  - **Opinionated Defaults**: We bake in sensible, predefined choices (e.g., Angular uses `zone.js`, testing is unified under Playwright and framework-native test runners).
44
46
  - **Unified Scripts**: `start.sh`, `test.sh`, and `lint.sh` available out of the box to manage both frontend and backend seamlessly.
45
47
  - **CI/CD Ready**: Includes a pre-configured `.github/workflows/cli-e2e.yml` that tests both ends. _Tip: To enforce this, enable branch protection in your GitHub repository settings and require the "test" status check to pass._
46
48
  - **Developer Experience**: Includes `.vscode/extensions.json` recommending the necessary linters and formatters, and an `AGENTS.md` file providing behavioral guidelines for AI agents. It is AI development friendly, including an extensive set of agent skills in `.agents/skills`.
47
49
  <details>
48
50
  <summary>Included Agent Skills</summary>
49
- <p>senior-frontend, senior-qa, senior-fullstack, accessibility-general</p>
51
+ <ul>
52
+ <li><b>senior-frontend</b>: Includes scripts for component generation, frontend scaffolding, and bundle analysis.</li>
53
+ <li><b>senior-fullstack</b>: Provides tools for fullstack scaffolding, project setup, and code quality analysis.</li>
54
+ <li><b>senior-qa</b>: Contains utilities for test suite generation, E2E test scaffolding, and coverage analysis.</li>
55
+ <li><b>accessibility-general</b>: Guidelines and tools for ensuring WCAG 2.2 accessibility compliance.</li>
56
+ </ul>
50
57
  </details>
51
58
 
52
59
  ## Generated Project
@@ -109,6 +116,12 @@ This project redistributes boilerplate code and configuration files generated by
109
116
  - [Flask](https://flask.palletsprojects.com/) (BSD 3-Clause License)
110
117
  - [.NET](https://dotnet.microsoft.com/) (MIT License)
111
118
  - [Express](https://expressjs.com/) (MIT License)
119
+ - [PostgreSQL](https://www.postgresql.org/) (PostgreSQL License)
120
+ - [Alembic](https://alembic.sqlalchemy.org/) (MIT License)
121
+ - [SQLAlchemy](https://www.sqlalchemy.org/) (MIT License)
122
+ - [Psycopg2](https://www.psycopg.org/) (LGPL with exceptions)
123
+ - [node-postgres (pg)](https://node-postgres.com/) (MIT License)
124
+ - [Npgsql](https://www.npgsql.org/) (PostgreSQL License)
112
125
 
113
126
  ## References
114
127
 
package/cli/build-date.js CHANGED
@@ -1 +1 @@
1
- module.exports = '2026-08-23 21:11:43';
1
+ module.exports = '2026-08-28 08:52:47';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.14.0",
6
+ "version": "1.14.1",
7
7
  "description": "A CLI tool for scaffolding a full-stack web application with your choice of frontend and backend technologies.",
8
8
  "main": "cli/index.js",
9
9
  "bin": {
@@ -24,7 +24,7 @@ To start the database, backend, and frontend development servers, simply run:
24
24
  ./start.sh
25
25
  ```
26
26
 
27
- **Database Note:** The `start.sh` script will automatically spin up a **PostgreSQL (v15)** database using Docker Compose, and it will run **Alembic (v1.16.5)** (using SQLAlchemy v2.0.52 and Psycopg2 v2.9.12) to handle migrations before starting the rest of your app.
27
+ **Database Note:** The `start.sh` script will automatically spin up a **PostgreSQL (v15)** database using Docker Compose, and it will run **Alembic (v1.19.1)** (using SQLAlchemy v2.0.52 and Psycopg2 v2.9.12) to handle migrations before starting the rest of your app.
28
28
 
29
29
  ### Testing and Linting
30
30
 
@@ -47,5 +47,10 @@ This repository is optimized for development with AI agents:
47
47
 
48
48
  <details>
49
49
  <summary>Included Agent Skills</summary>
50
- <p>senior-frontend, senior-qa, senior-fullstack, accessibility-general</p>
50
+ <ul>
51
+ <li><b>senior-frontend</b>: Includes scripts for component generation, frontend scaffolding, and bundle analysis.</li>
52
+ <li><b>senior-fullstack</b>: Provides tools for fullstack scaffolding, project setup, and code quality analysis.</li>
53
+ <li><b>senior-qa</b>: Contains utilities for test suite generation, E2E test scaffolding, and coverage analysis.</li>
54
+ <li><b>accessibility-general</b>: Guidelines and tools for ensuring WCAG 2.2 accessibility compliance.</li>
55
+ </ul>
51
56
  </details>