@atlashub/smartstack-cli 1.31.0 → 1.32.0
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/dist/index.js +9051 -2056
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
- package/templates/project/appsettings.json.template +153 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlashub/smartstack-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.32.0",
|
|
4
4
|
"description": "SmartStack Claude Code automation toolkit - GitFlow, APEX, EF Core migrations, prompts and more",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SmartStack",
|
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
"cli-table3": "^0.6.3",
|
|
78
78
|
"commander": "^12.0.0",
|
|
79
79
|
"fs-extra": "^11.2.0",
|
|
80
|
+
"glob": "^11.0.0",
|
|
80
81
|
"inquirer": "^9.2.12",
|
|
81
82
|
"jsonwebtoken": "^9.0.3",
|
|
82
83
|
"mssql": "^11.0.1",
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"ConnectionStrings": {
|
|
3
|
+
"DefaultConnection": "Server=(local);Database={{ProjectName}};Integrated Security=true;TrustServerCertificate=true;Connection Timeout=60;Pooling=true;Min Pool Size=0;Max Pool Size=50;Load Balance Timeout=30"
|
|
4
|
+
},
|
|
5
|
+
"SmartStack": {
|
|
6
|
+
"AutoMigrate": true,
|
|
7
|
+
"FailOnMigrationError": true,
|
|
8
|
+
"EnableDevSeeding": false
|
|
9
|
+
},
|
|
10
|
+
"Jwt": {
|
|
11
|
+
"Secret": "{{GenerateRandomSecret}}",
|
|
12
|
+
"Issuer": "{{ProjectName}}",
|
|
13
|
+
"Audience": "{{ProjectName}}",
|
|
14
|
+
"AccessTokenExpirationMinutes": 60,
|
|
15
|
+
"RefreshTokenExpirationDays": 7
|
|
16
|
+
},
|
|
17
|
+
"Authentication": {
|
|
18
|
+
"Microsoft": {
|
|
19
|
+
"ClientId": "",
|
|
20
|
+
"ClientSecret": "",
|
|
21
|
+
"CallbackPath": "/api/auth/microsoft/callback"
|
|
22
|
+
},
|
|
23
|
+
"Google": {
|
|
24
|
+
"ClientId": "",
|
|
25
|
+
"ClientSecret": "",
|
|
26
|
+
"CallbackPath": "/api/auth/google/callback"
|
|
27
|
+
},
|
|
28
|
+
"FrontendUrl": "http://localhost:5173"
|
|
29
|
+
},
|
|
30
|
+
"Session": {
|
|
31
|
+
"IdleTimeoutMinutes": 20,
|
|
32
|
+
"AbsoluteTimeoutHours": 8,
|
|
33
|
+
"WarningThresholdMinutes": 5,
|
|
34
|
+
"EnableValidation": true,
|
|
35
|
+
"RefreshTokenExpirationDays": 7,
|
|
36
|
+
"CleanupBatchSize": 100,
|
|
37
|
+
"MaxConcurrentSessions": 1
|
|
38
|
+
},
|
|
39
|
+
"Serilog": {
|
|
40
|
+
"MinimumLevel": {
|
|
41
|
+
"Default": "Information",
|
|
42
|
+
"Override": {
|
|
43
|
+
"Microsoft": "Warning",
|
|
44
|
+
"Microsoft.EntityFrameworkCore": "Warning",
|
|
45
|
+
"Microsoft.AspNetCore": "Warning",
|
|
46
|
+
"System": "Warning"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"Enrich": ["FromLogContext", "WithMachineName", "WithThreadId"],
|
|
50
|
+
"Properties": {
|
|
51
|
+
"Application": "{{ProjectName}}"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"Logging": {
|
|
55
|
+
"Sinks": {
|
|
56
|
+
"Console": {
|
|
57
|
+
"Enabled": true
|
|
58
|
+
},
|
|
59
|
+
"File": {
|
|
60
|
+
"Enabled": true,
|
|
61
|
+
"Path": "logs/{{ProjectNameLower}}-.log",
|
|
62
|
+
"RollingInterval": "Day",
|
|
63
|
+
"RetainedFileCountLimit": 21
|
|
64
|
+
},
|
|
65
|
+
"Seq": {
|
|
66
|
+
"Enabled": false,
|
|
67
|
+
"ServerUrl": "http://localhost:5341"
|
|
68
|
+
},
|
|
69
|
+
"ApplicationInsights": {
|
|
70
|
+
"Enabled": false,
|
|
71
|
+
"ConnectionString": ""
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"AzureStorage": {
|
|
76
|
+
"UseAzure": false,
|
|
77
|
+
"Normal": {
|
|
78
|
+
"ConnectionString": "",
|
|
79
|
+
"ContainerName": "files",
|
|
80
|
+
"MaxFileSizeMB": 50,
|
|
81
|
+
"RetentionDays": 0,
|
|
82
|
+
"AllowedExtensions": []
|
|
83
|
+
},
|
|
84
|
+
"Legal": {
|
|
85
|
+
"ConnectionString": "",
|
|
86
|
+
"ContainerName": "legal-files",
|
|
87
|
+
"MaxFileSizeMB": 50,
|
|
88
|
+
"RetentionDays": 3653,
|
|
89
|
+
"EnableLegalHold": true,
|
|
90
|
+
"EnableRetentionPolicy": true,
|
|
91
|
+
"AllowedExtensions": []
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"FileStorage": {
|
|
95
|
+
"BasePath": "d:\\{{ProjectName}}Files",
|
|
96
|
+
"Normal": {
|
|
97
|
+
"FolderName": "normal",
|
|
98
|
+
"MaxFileSizeMB": 50,
|
|
99
|
+
"RetentionDays": 0,
|
|
100
|
+
"AllowedExtensions": []
|
|
101
|
+
},
|
|
102
|
+
"Legal": {
|
|
103
|
+
"FolderName": "legal",
|
|
104
|
+
"MaxFileSizeMB": 50,
|
|
105
|
+
"RetentionDays": 3653,
|
|
106
|
+
"AllowedExtensions": []
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"Email": {
|
|
110
|
+
"Enabled": true,
|
|
111
|
+
"Provider": "Development",
|
|
112
|
+
"FromEmail": "noreply@{{ProjectDomain}}",
|
|
113
|
+
"FromName": "{{ProjectName}}",
|
|
114
|
+
"BaseUrl": "http://localhost:5173",
|
|
115
|
+
"TokenExpiration": {
|
|
116
|
+
"EmailConfirmation": "24:00:00",
|
|
117
|
+
"PasswordReset": "01:00:00"
|
|
118
|
+
},
|
|
119
|
+
"Development": {
|
|
120
|
+
"SmtpHost": "localhost",
|
|
121
|
+
"SmtpPort": 1025,
|
|
122
|
+
"UseSsl": false,
|
|
123
|
+
"WebInterfaceUrl": "http://localhost:8025"
|
|
124
|
+
},
|
|
125
|
+
"Mailgun": {
|
|
126
|
+
"ApiKey": "",
|
|
127
|
+
"Domain": "",
|
|
128
|
+
"Region": "EU"
|
|
129
|
+
},
|
|
130
|
+
"AzureAcs": {
|
|
131
|
+
"ConnectionString": "",
|
|
132
|
+
"SenderAddress": ""
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"Entra": {
|
|
136
|
+
"TenantId": "",
|
|
137
|
+
"ClientId": "",
|
|
138
|
+
"ClientSecret": "",
|
|
139
|
+
"SyncEnabled": false,
|
|
140
|
+
"SyncIntervalMinutes": 60,
|
|
141
|
+
"UseDeltaSync": true,
|
|
142
|
+
"DefaultConflictResolution": "ManualReview",
|
|
143
|
+
"AutoCreateReferences": true
|
|
144
|
+
},
|
|
145
|
+
"MultiTenant": {
|
|
146
|
+
"Enabled": true,
|
|
147
|
+
"EnableB2C": true,
|
|
148
|
+
"SystemTenantSlug": "default",
|
|
149
|
+
"SystemTenantName": "Default Workspace",
|
|
150
|
+
"AutoAssignUsersToSystemTenant": true
|
|
151
|
+
},
|
|
152
|
+
"AllowedHosts": "*"
|
|
153
|
+
}
|