create-momentum-app 0.4.1 → 0.5.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 +1 -0
- package/package.json +21 -21
- package/templates/angular/src/server.ts.tmpl +3 -1
package/README.md
CHANGED
|
@@ -30,4 +30,5 @@ npx create-momentum-app my-app --flavor angular --database postgres
|
|
|
30
30
|
- REST API at `/api`
|
|
31
31
|
- Authentication via Better Auth
|
|
32
32
|
- Drizzle ORM with PostgreSQL or SQLite
|
|
33
|
+
- Docker Compose setup for PostgreSQL (when using postgres)
|
|
33
34
|
- Tailwind CSS with the Momentum admin theme
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-momentum-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Create a new Momentum CMS application",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Momentum CMS Contributors",
|
|
@@ -35,27 +35,27 @@
|
|
|
35
35
|
"README.md"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@angular/aria": "21.
|
|
39
|
-
"@angular/cdk": "21.
|
|
40
|
-
"@angular/common": "21.
|
|
41
|
-
"@angular/compiler": "21.
|
|
42
|
-
"@angular/core": "21.
|
|
43
|
-
"@angular/forms": "21.
|
|
44
|
-
"@angular/platform-browser": "21.
|
|
45
|
-
"@angular/platform-server": "21.
|
|
46
|
-
"@angular/router": "21.
|
|
47
|
-
"@angular/ssr": "21.
|
|
48
|
-
"@aws-sdk/client-s3": "3.
|
|
49
|
-
"@aws-sdk/s3-request-presigner": "3.
|
|
50
|
-
"@ng-icons/core": "33.
|
|
51
|
-
"@ng-icons/heroicons": "33.
|
|
52
|
-
"@tiptap/core": "3.
|
|
53
|
-
"@tiptap/extension-link": "3.
|
|
54
|
-
"@tiptap/extension-placeholder": "3.
|
|
55
|
-
"@tiptap/extension-underline": "3.
|
|
56
|
-
"@tiptap/starter-kit": "3.
|
|
38
|
+
"@angular/aria": "21.2.0",
|
|
39
|
+
"@angular/cdk": "21.2.0",
|
|
40
|
+
"@angular/common": "21.2.0",
|
|
41
|
+
"@angular/compiler": "21.2.0",
|
|
42
|
+
"@angular/core": "21.2.0",
|
|
43
|
+
"@angular/forms": "21.2.0",
|
|
44
|
+
"@angular/platform-browser": "21.2.0",
|
|
45
|
+
"@angular/platform-server": "21.2.0",
|
|
46
|
+
"@angular/router": "21.2.0",
|
|
47
|
+
"@angular/ssr": "21.2.0",
|
|
48
|
+
"@aws-sdk/client-s3": "3.999.0",
|
|
49
|
+
"@aws-sdk/s3-request-presigner": "3.999.0",
|
|
50
|
+
"@ng-icons/core": "33.1.0",
|
|
51
|
+
"@ng-icons/heroicons": "33.1.0",
|
|
52
|
+
"@tiptap/core": "3.20.0",
|
|
53
|
+
"@tiptap/extension-link": "3.20.0",
|
|
54
|
+
"@tiptap/extension-placeholder": "3.20.0",
|
|
55
|
+
"@tiptap/extension-underline": "3.20.0",
|
|
56
|
+
"@tiptap/starter-kit": "3.20.0",
|
|
57
57
|
"fs-extra": "^11.2.0",
|
|
58
|
-
"graphql": "16.
|
|
58
|
+
"graphql": "16.13.0",
|
|
59
59
|
"h3": "1.15.5",
|
|
60
60
|
"picocolors": "^1.1.0",
|
|
61
61
|
"prompts": "^2.4.2",
|
|
@@ -16,7 +16,9 @@ import momentumConfig, { authPlugin } from './momentum.config';
|
|
|
16
16
|
const serverDistFolder = dirname(fileURLToPath(import.meta.url));
|
|
17
17
|
const browserDistFolder = resolve(serverDistFolder, '../browser');
|
|
18
18
|
|
|
19
|
-
const angularApp = new AngularNodeAppEngine(
|
|
19
|
+
const angularApp = new AngularNodeAppEngine({
|
|
20
|
+
allowedHosts: ['localhost'],
|
|
21
|
+
});
|
|
20
22
|
|
|
21
23
|
/**
|
|
22
24
|
* Create the Momentum CMS server.
|