create-forgeon 0.3.15 → 0.3.17

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.
Files changed (129) hide show
  1. package/package.json +4 -2
  2. package/src/cli/add-options.test.mjs +5 -2
  3. package/src/cli/options.test.mjs +1 -0
  4. package/src/cli/prompt-select.test.mjs +1 -0
  5. package/src/core/docs.test.mjs +80 -40
  6. package/src/core/scaffold.test.mjs +100 -0
  7. package/src/core/validate.test.mjs +1 -0
  8. package/src/modules/accounts.mjs +416 -0
  9. package/src/modules/db-prisma.mjs +23 -55
  10. package/src/modules/dependencies.test.mjs +71 -29
  11. package/src/modules/executor.mjs +3 -2
  12. package/src/modules/executor.test.mjs +631 -500
  13. package/src/modules/files-access.mjs +36 -105
  14. package/src/modules/files-image.mjs +35 -107
  15. package/src/modules/files-local.mjs +15 -6
  16. package/src/modules/files-quotas.mjs +75 -93
  17. package/src/modules/files-s3.mjs +17 -6
  18. package/src/modules/files.mjs +56 -125
  19. package/src/modules/i18n.mjs +17 -121
  20. package/src/modules/idempotency.test.mjs +180 -0
  21. package/src/modules/logger.mjs +0 -9
  22. package/src/modules/probes.test.mjs +204 -0
  23. package/src/modules/queue.mjs +325 -440
  24. package/src/modules/rate-limit.mjs +36 -76
  25. package/src/modules/rbac.mjs +39 -78
  26. package/src/modules/registry.mjs +22 -35
  27. package/src/modules/scheduler.mjs +51 -171
  28. package/src/modules/shared/files-runtime-wiring.mjs +81 -0
  29. package/src/modules/shared/nest-runtime-wiring.mjs +110 -0
  30. package/src/modules/shared/patch-utils.mjs +29 -1
  31. package/src/modules/shared/probes.mjs +235 -0
  32. package/src/modules/sync-integrations.mjs +109 -396
  33. package/src/modules/sync-integrations.test.mjs +141 -0
  34. package/src/run-add-module.test.mjs +154 -0
  35. package/templates/base/README.md +7 -55
  36. package/templates/base/apps/web/src/App.tsx +70 -42
  37. package/templates/base/apps/web/src/probes.ts +61 -0
  38. package/templates/base/apps/web/src/styles.css +86 -25
  39. package/templates/base/package.json +21 -15
  40. package/templates/base/scripts/forgeon-sync-integrations.mjs +65 -281
  41. package/templates/module-fragments/{jwt-auth → accounts}/00_title.md +2 -1
  42. package/templates/module-fragments/{jwt-auth → accounts}/10_overview.md +5 -5
  43. package/templates/module-fragments/accounts/20_scope.md +29 -0
  44. package/templates/module-fragments/accounts/90_status_implemented.md +8 -0
  45. package/templates/module-fragments/accounts/90_status_planned.md +7 -0
  46. package/templates/module-fragments/rbac/30_what_it_adds.md +3 -2
  47. package/templates/module-fragments/rbac/40_how_it_works.md +2 -1
  48. package/templates/module-fragments/rbac/50_how_to_use.md +2 -1
  49. package/templates/module-fragments/swagger/20_scope.md +2 -1
  50. package/templates/module-presets/accounts/apps/api/prisma/migrations/0002_accounts_core/migration.sql +97 -0
  51. package/templates/module-presets/accounts/apps/api/src/accounts/forgeon-accounts-db-prisma.module.ts +17 -0
  52. package/templates/module-presets/accounts/apps/api/src/accounts/prisma-accounts-persistence.store.ts +332 -0
  53. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/package.json +5 -5
  54. package/templates/module-presets/accounts/packages/accounts-api/src/accounts-email.port.ts +13 -0
  55. package/templates/module-presets/accounts/packages/accounts-api/src/accounts-persistence.port.ts +67 -0
  56. package/templates/module-presets/accounts/packages/accounts-api/src/accounts-rbac.port.ts +14 -0
  57. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/auth-config.loader.ts +7 -7
  58. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/auth-config.service.ts +7 -7
  59. package/templates/module-presets/accounts/packages/accounts-api/src/auth-core.service.ts +318 -0
  60. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/auth-env.schema.ts +4 -4
  61. package/templates/module-presets/accounts/packages/accounts-api/src/auth-jwt.service.ts +58 -0
  62. package/templates/module-presets/accounts/packages/accounts-api/src/auth-password.service.ts +21 -0
  63. package/templates/module-presets/accounts/packages/accounts-api/src/auth.controller.ts +93 -0
  64. package/templates/module-presets/accounts/packages/accounts-api/src/auth.service.ts +48 -0
  65. package/templates/module-presets/accounts/packages/accounts-api/src/auth.types.ts +17 -0
  66. package/templates/module-presets/accounts/packages/accounts-api/src/dto/change-password.dto.ts +13 -0
  67. package/templates/module-presets/accounts/packages/accounts-api/src/dto/confirm-password-reset.dto.ts +12 -0
  68. package/templates/module-presets/accounts/packages/accounts-api/src/dto/index.ts +10 -0
  69. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/dto/login.dto.ts +1 -1
  70. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/dto/refresh.dto.ts +1 -1
  71. package/templates/module-presets/accounts/packages/accounts-api/src/dto/register.dto.ts +23 -0
  72. package/templates/module-presets/accounts/packages/accounts-api/src/dto/request-password-reset.dto.ts +7 -0
  73. package/templates/module-presets/accounts/packages/accounts-api/src/dto/update-user-profile.dto.ts +16 -0
  74. package/templates/module-presets/accounts/packages/accounts-api/src/dto/update-user-settings.dto.ts +16 -0
  75. package/templates/module-presets/accounts/packages/accounts-api/src/dto/update-user.dto.ts +8 -0
  76. package/templates/module-presets/accounts/packages/accounts-api/src/dto/verify-email.dto.ts +8 -0
  77. package/templates/module-presets/accounts/packages/accounts-api/src/forgeon-accounts.module.ts +82 -0
  78. package/templates/module-presets/accounts/packages/accounts-api/src/index.ts +24 -0
  79. package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/jwt.strategy.ts +3 -3
  80. package/templates/module-presets/accounts/packages/accounts-api/src/owner-access.guard.ts +39 -0
  81. package/templates/module-presets/accounts/packages/accounts-api/src/users-config.ts +13 -0
  82. package/templates/module-presets/accounts/packages/accounts-api/src/users.controller.ts +65 -0
  83. package/templates/module-presets/accounts/packages/accounts-api/src/users.service.ts +87 -0
  84. package/templates/module-presets/accounts/packages/accounts-api/src/users.types.ts +65 -0
  85. package/templates/module-presets/{jwt-auth/packages/auth-contracts → accounts/packages/accounts-contracts}/package.json +1 -1
  86. package/templates/module-presets/accounts/packages/accounts-contracts/src/index.ts +119 -0
  87. package/templates/module-presets/files/apps/api/src/files/forgeon-files-db-prisma.module.ts +17 -0
  88. package/templates/module-presets/files/apps/api/src/files/prisma-files-persistence.store.ts +164 -0
  89. package/templates/module-presets/files/packages/files/package.json +1 -2
  90. package/templates/module-presets/files/packages/files/src/files.ports.ts +107 -0
  91. package/templates/module-presets/files/packages/files/src/files.service.ts +81 -395
  92. package/templates/module-presets/files/packages/files/src/forgeon-files.module.ts +126 -2
  93. package/templates/module-presets/files/packages/files/src/index.ts +2 -1
  94. package/templates/module-presets/files-local/packages/files-local/src/forgeon-files-local-storage.module.ts +18 -0
  95. package/templates/module-presets/files-local/packages/files-local/src/index.ts +2 -0
  96. package/templates/module-presets/files-local/packages/files-local/src/local-files-storage.adapter.ts +53 -0
  97. package/templates/module-presets/files-quotas/packages/files-quotas/src/forgeon-files-quotas.module.ts +12 -4
  98. package/templates/module-presets/files-s3/packages/files-s3/src/forgeon-files-s3-storage.module.ts +18 -0
  99. package/templates/module-presets/files-s3/packages/files-s3/src/index.ts +2 -0
  100. package/templates/module-presets/files-s3/packages/files-s3/src/s3-files-storage.adapter.ts +130 -0
  101. package/templates/module-presets/i18n/apps/web/src/App.tsx +68 -41
  102. package/templates/module-presets/logger/packages/logger/src/index.ts +0 -1
  103. package/src/modules/jwt-auth.mjs +0 -390
  104. package/templates/base/docs/AI/ARCHITECTURE.md +0 -85
  105. package/templates/base/docs/AI/MODULE_CHECKS.md +0 -28
  106. package/templates/base/docs/AI/MODULE_SPEC.md +0 -77
  107. package/templates/base/docs/AI/PROJECT.md +0 -43
  108. package/templates/base/docs/AI/ROADMAP.md +0 -171
  109. package/templates/base/docs/AI/TASKS.md +0 -60
  110. package/templates/base/docs/AI/VALIDATION.md +0 -31
  111. package/templates/base/docs/README.md +0 -18
  112. package/templates/module-fragments/jwt-auth/20_scope.md +0 -19
  113. package/templates/module-fragments/jwt-auth/90_status_implemented.md +0 -8
  114. package/templates/module-fragments/jwt-auth/90_status_planned.md +0 -3
  115. package/templates/module-presets/jwt-auth/apps/api/prisma/migrations/0002_auth_refresh_token_hash/migration.sql +0 -3
  116. package/templates/module-presets/jwt-auth/apps/api/src/auth/prisma-auth-refresh-token.store.ts +0 -36
  117. package/templates/module-presets/jwt-auth/packages/auth-api/src/auth-refresh-token.store.ts +0 -23
  118. package/templates/module-presets/jwt-auth/packages/auth-api/src/auth.controller.ts +0 -71
  119. package/templates/module-presets/jwt-auth/packages/auth-api/src/auth.service.ts +0 -175
  120. package/templates/module-presets/jwt-auth/packages/auth-api/src/auth.types.ts +0 -6
  121. package/templates/module-presets/jwt-auth/packages/auth-api/src/dto/index.ts +0 -2
  122. package/templates/module-presets/jwt-auth/packages/auth-api/src/forgeon-auth.module.ts +0 -47
  123. package/templates/module-presets/jwt-auth/packages/auth-api/src/index.ts +0 -12
  124. package/templates/module-presets/jwt-auth/packages/auth-contracts/src/index.ts +0 -47
  125. package/templates/module-presets/logger/packages/logger/src/http-logging.interceptor.ts +0 -94
  126. /package/templates/module-presets/{jwt-auth/packages/auth-api/src/jwt-auth.guard.ts → accounts/packages/accounts-api/src/access-token.guard.ts} +0 -0
  127. /package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/src/auth-config.module.ts +0 -0
  128. /package/templates/module-presets/{jwt-auth/packages/auth-api → accounts/packages/accounts-api}/tsconfig.json +0 -0
  129. /package/templates/module-presets/{jwt-auth/packages/auth-contracts → accounts/packages/accounts-contracts}/tsconfig.json +0 -0
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "create-forgeon",
3
- "version": "0.3.15",
3
+ "version": "0.3.17",
4
4
  "description": "Forgeon project generator CLI",
5
5
  "license": "MIT",
6
6
  "author": "Forgeon",
7
7
  "type": "module",
8
8
  "scripts": {
9
- "test": "node --test src/cli/options.test.mjs src/cli/add-options.test.mjs src/cli/prompt-select.test.mjs src/core/docs.test.mjs src/core/validate.test.mjs src/modules/executor.test.mjs"
9
+ "test": "node --test --test-concurrency=1 src/cli/options.test.mjs src/cli/add-options.test.mjs src/cli/prompt-select.test.mjs src/core/docs.test.mjs src/core/validate.test.mjs src/core/scaffold.test.mjs src/modules/dependencies.test.mjs src/modules/executor.test.mjs src/modules/probes.test.mjs src/modules/idempotency.test.mjs src/modules/sync-integrations.test.mjs src/run-add-module.test.mjs",
10
+ "smoke:generated-project": "node scripts/generated-project-smoke.mjs",
11
+ "smoke:generated-project:full": "node scripts/generated-project-full-smoke.mjs"
10
12
  },
11
13
  "bin": {
12
14
  "create-forgeon": "bin/create-forgeon.mjs"
@@ -4,8 +4,8 @@ import { parseAddCliArgs } from './add-options.mjs';
4
4
 
5
5
  describe('parseAddCliArgs', () => {
6
6
  it('parses module id and explicit project', () => {
7
- const options = parseAddCliArgs(['jwt-auth', '--project', './demo']);
8
- assert.equal(options.moduleId, 'jwt-auth');
7
+ const options = parseAddCliArgs(['accounts', '--project', './demo']);
8
+ assert.equal(options.moduleId, 'accounts');
9
9
  assert.equal(options.project, './demo');
10
10
  assert.equal(options.list, false);
11
11
  });
@@ -40,3 +40,6 @@ describe('parseAddCliArgs', () => {
40
40
  });
41
41
  });
42
42
  });
43
+
44
+
45
+
@@ -42,3 +42,4 @@ describe('parseCliArgs', () => {
42
42
  );
43
43
  });
44
44
  });
45
+
@@ -146,3 +146,4 @@ describe('promptSelect', () => {
146
146
  assert.equal(inputStream.isPaused(), true);
147
147
  });
148
148
  });
149
+
@@ -1,29 +1,30 @@
1
- import { describe, it } from 'node:test';
2
- import assert from 'node:assert/strict';
3
- import fs from 'node:fs';
4
- import os from 'node:os';
5
- import path from 'node:path';
6
- import { fileURLToPath } from 'node:url';
7
- import { generateDocs } from './docs.mjs';
8
-
9
- function makeTempDir(prefix) {
10
- return fs.mkdtempSync(path.join(os.tmpdir(), prefix));
11
- }
12
-
13
- function readFile(filePath) {
14
- return fs.readFileSync(filePath, 'utf8');
15
- }
16
-
17
- describe('generateDocs', () => {
18
- const thisDir = path.dirname(fileURLToPath(import.meta.url));
19
- const packageRoot = path.resolve(thisDir, '..', '..');
20
-
1
+ import { describe, it } from 'node:test';
2
+ import assert from 'node:assert/strict';
3
+ import fs from 'node:fs';
4
+ import os from 'node:os';
5
+ import path from 'node:path';
6
+ import { fileURLToPath } from 'node:url';
7
+ import { generateDocs } from './docs.mjs';
8
+ import { scaffoldProject } from './scaffold.mjs';
9
+
10
+ function makeTempDir(prefix) {
11
+ return fs.mkdtempSync(path.join(os.tmpdir(), prefix));
12
+ }
13
+
14
+ function readFile(filePath) {
15
+ return fs.readFileSync(filePath, 'utf8');
16
+ }
17
+
18
+ describe('generateDocs', () => {
19
+ const thisDir = path.dirname(fileURLToPath(import.meta.url));
20
+ const packageRoot = path.resolve(thisDir, '..', '..');
21
+
21
22
  it('generates docs for proxy=none without i18n section', () => {
22
- const targetRoot = makeTempDir('forgeon-docs-off-');
23
-
24
- try {
25
- generateDocs(
26
- targetRoot,
23
+ const targetRoot = makeTempDir('forgeon-docs-off-');
24
+
25
+ try {
26
+ generateDocs(
27
+ targetRoot,
27
28
  {
28
29
  frontend: 'react',
29
30
  db: 'prisma',
@@ -31,9 +32,9 @@ describe('generateDocs', () => {
31
32
  dockerEnabled: true,
32
33
  i18nEnabled: false,
33
34
  proxy: 'none',
34
- },
35
- packageRoot,
36
- );
35
+ },
36
+ packageRoot,
37
+ );
37
38
 
38
39
  const readme = readFile(path.join(targetRoot, 'README.md'));
39
40
 
@@ -45,18 +46,20 @@ describe('generateDocs', () => {
45
46
  assert.match(readme, /Module notes index: `modules\/README\.md`/);
46
47
  assert.doesNotMatch(readme, /i18n Configuration/);
47
48
  assert.doesNotMatch(readme, /Prisma In Container Start/);
49
+ assert.doesNotMatch(readme, /docs\/README\.md/);
50
+ assert.doesNotMatch(readme, /docs\/Agents\.md/);
48
51
  assert.equal(fs.existsSync(path.join(targetRoot, 'docs')), false);
49
52
  } finally {
50
53
  fs.rmSync(targetRoot, { recursive: true, force: true });
51
54
  }
52
- });
53
-
54
- it('generates docker and caddy notes when enabled', () => {
55
- const targetRoot = makeTempDir('forgeon-docs-on-');
56
-
57
- try {
58
- generateDocs(
59
- targetRoot,
55
+ });
56
+
57
+ it('generates docker and caddy notes when enabled', () => {
58
+ const targetRoot = makeTempDir('forgeon-docs-on-');
59
+
60
+ try {
61
+ generateDocs(
62
+ targetRoot,
60
63
  {
61
64
  frontend: 'react',
62
65
  db: 'prisma',
@@ -64,9 +67,9 @@ describe('generateDocs', () => {
64
67
  dockerEnabled: true,
65
68
  i18nEnabled: true,
66
69
  proxy: 'caddy',
67
- },
68
- packageRoot,
69
- );
70
+ },
71
+ packageRoot,
72
+ );
70
73
 
71
74
  const readme = readFile(path.join(targetRoot, 'README.md'));
72
75
 
@@ -77,9 +80,46 @@ describe('generateDocs', () => {
77
80
  assert.match(readme, /Prisma In Container Start/);
78
81
  assert.match(readme, /Error Handling \(`core-errors`\)/);
79
82
  assert.match(readme, /Module-specific notes: `modules\/<module-id>\/README\.md`/);
83
+ assert.doesNotMatch(readme, /docs\/README\.md/);
84
+ assert.doesNotMatch(readme, /docs\/Agents\.md/);
80
85
  assert.equal(fs.existsSync(path.join(targetRoot, 'docs')), false);
81
86
  } finally {
82
87
  fs.rmSync(targetRoot, { recursive: true, force: true });
83
88
  }
84
- });
89
+ });
90
+
91
+ it('scaffolds a generated project without copying internal docs payload', () => {
92
+ const tempRoot = makeTempDir('forgeon-scaffold-doc-boundary-');
93
+ const targetRoot = path.join(tempRoot, 'demo-doc-boundary');
94
+ const templateRoot = path.join(packageRoot, 'templates', 'base');
95
+
96
+ try {
97
+ scaffoldProject({
98
+ templateRoot,
99
+ packageRoot,
100
+ targetRoot,
101
+ projectName: 'demo-doc-boundary',
102
+ frontend: 'react',
103
+ db: 'prisma',
104
+ dbPrismaEnabled: true,
105
+ i18nEnabled: true,
106
+ proxy: 'caddy',
107
+ });
108
+
109
+ const readme = readFile(path.join(targetRoot, 'README.md'));
110
+ const packageJson = readFile(path.join(targetRoot, 'package.json'));
111
+
112
+ assert.equal(fs.existsSync(path.join(targetRoot, 'docs')), false);
113
+ assert.match(readme, /Module notes index: `modules\/README\.md`/);
114
+ assert.doesNotMatch(readme, /temporary template placeholder/i);
115
+ assert.doesNotMatch(readme, /built-in docs/i);
116
+ assert.doesNotMatch(readme, /docs\/README\.md/);
117
+ assert.doesNotMatch(readme, /docs\/Agents\.md/);
118
+ assert.doesNotMatch(packageJson, /"create:forgeon"/);
119
+ assert.match(packageJson, /"forgeon:sync-integrations"/);
120
+ } finally {
121
+ fs.rmSync(tempRoot, { recursive: true, force: true });
122
+ }
123
+ });
85
124
  });
125
+
@@ -0,0 +1,100 @@
1
+ import { describe, it } from 'node:test';
2
+ import assert from 'node:assert/strict';
3
+ import fs from 'node:fs';
4
+ import os from 'node:os';
5
+ import path from 'node:path';
6
+ import { fileURLToPath } from 'node:url';
7
+ import { scaffoldProject } from './scaffold.mjs';
8
+
9
+ function makeTempDir(prefix) {
10
+ return fs.mkdtempSync(path.join(os.tmpdir(), prefix));
11
+ }
12
+
13
+ function readFile(filePath) {
14
+ return fs.readFileSync(filePath, 'utf8');
15
+ }
16
+
17
+ function assertProxyPreset(targetRoot, proxy) {
18
+ const dockerDir = path.join(targetRoot, 'infra', 'docker');
19
+ const compose = readFile(path.join(dockerDir, 'compose.yml'));
20
+ const packageJson = readFile(path.join(targetRoot, 'package.json'));
21
+ const appTsx = readFile(path.join(targetRoot, 'apps', 'web', 'src', 'App.tsx'));
22
+ const probesTs = readFile(path.join(targetRoot, 'apps', 'web', 'src', 'probes.ts'));
23
+
24
+ assert.equal(fs.existsSync(path.join(targetRoot, 'docs')), false);
25
+ assert.equal(fs.existsSync(path.join(dockerDir, 'compose.caddy.yml')), false);
26
+ assert.equal(fs.existsSync(path.join(dockerDir, 'compose.nginx.yml')), false);
27
+ assert.equal(fs.existsSync(path.join(dockerDir, 'compose.none.yml')), false);
28
+ assert.match(packageJson, /"forgeon:sync-integrations"/);
29
+ assert.doesNotMatch(packageJson, /"create:forgeon"/);
30
+ assert.match(compose, /^services:\s*$/m);
31
+ assert.match(compose, /^\s{2}api:\s*$/m);
32
+
33
+ if (proxy === 'caddy') {
34
+ assert.match(compose, /^\s{2}caddy:\s*$/m);
35
+ assert.doesNotMatch(compose, /^\s{2}nginx:\s*$/m);
36
+ assert.equal(fs.existsSync(path.join(dockerDir, 'caddy.Dockerfile')), true);
37
+ assert.equal(fs.existsSync(path.join(dockerDir, 'nginx.Dockerfile')), false);
38
+ assert.equal(fs.existsSync(path.join(targetRoot, 'infra', 'caddy')), true);
39
+ assert.equal(fs.existsSync(path.join(targetRoot, 'infra', 'nginx')), false);
40
+ return;
41
+ }
42
+
43
+ if (proxy === 'nginx') {
44
+ assert.match(compose, /^\s{2}nginx:\s*$/m);
45
+ assert.doesNotMatch(compose, /^\s{2}caddy:\s*$/m);
46
+ assert.equal(fs.existsSync(path.join(dockerDir, 'nginx.Dockerfile')), true);
47
+ assert.equal(fs.existsSync(path.join(dockerDir, 'caddy.Dockerfile')), false);
48
+ assert.equal(fs.existsSync(path.join(targetRoot, 'infra', 'nginx')), true);
49
+ assert.equal(fs.existsSync(path.join(targetRoot, 'infra', 'caddy')), false);
50
+ return;
51
+ }
52
+
53
+ assert.doesNotMatch(compose, /^\s{2}caddy:\s*$/m);
54
+ assert.doesNotMatch(compose, /^\s{2}nginx:\s*$/m);
55
+ assert.match(compose, /- "3000:3000"/);
56
+ assert.equal(fs.existsSync(path.join(dockerDir, 'nginx.Dockerfile')), false);
57
+ assert.equal(fs.existsSync(path.join(dockerDir, 'caddy.Dockerfile')), false);
58
+ assert.equal(fs.existsSync(path.join(targetRoot, 'infra', 'nginx')), false);
59
+ assert.equal(fs.existsSync(path.join(targetRoot, 'infra', 'caddy')), false);
60
+ }
61
+
62
+ describe('scaffoldProject', () => {
63
+ const thisDir = path.dirname(fileURLToPath(import.meta.url));
64
+ const packageRoot = path.resolve(thisDir, '..', '..');
65
+ const templateRoot = path.join(packageRoot, 'templates', 'base');
66
+ const cases = [
67
+ { proxy: 'caddy', readmePattern: /Proxy Preset: Caddy/ },
68
+ { proxy: 'nginx', readmePattern: /Proxy Preset: Nginx/ },
69
+ { proxy: 'none', readmePattern: /Proxy Preset: none/ },
70
+ ];
71
+
72
+ it('applies proxy presets without leftover reverse-proxy assets', () => {
73
+ for (const testCase of cases) {
74
+ const tempRoot = makeTempDir(`forgeon-scaffold-proxy-${testCase.proxy}-`);
75
+ const targetRoot = path.join(tempRoot, `demo-${testCase.proxy}`);
76
+
77
+ try {
78
+ scaffoldProject({
79
+ templateRoot,
80
+ packageRoot,
81
+ targetRoot,
82
+ projectName: `demo-${testCase.proxy}`,
83
+ frontend: 'react',
84
+ db: 'prisma',
85
+ dbPrismaEnabled: false,
86
+ i18nEnabled: false,
87
+ proxy: testCase.proxy,
88
+ });
89
+
90
+ const readme = readFile(path.join(targetRoot, 'README.md'));
91
+ assert.match(readme, testCase.readmePattern);
92
+ assert.match(readme, /Module notes index: `modules\/README\.md`/);
93
+ assertProxyPreset(targetRoot, testCase.proxy);
94
+ } finally {
95
+ fs.rmSync(tempRoot, { recursive: true, force: true });
96
+ }
97
+ }
98
+ });
99
+ });
100
+
@@ -71,3 +71,4 @@ describe('validatePresetSupport', () => {
71
71
  );
72
72
  });
73
73
  });
74
+