New Angular based web version #1

Closed
thomas.nuyken wants to merge 150 commits from main into ddd
2 changed files with 2 additions and 1 deletions
Showing only changes of commit fd7a8024a9 - Show all commits

View File

@@ -3,6 +3,7 @@
"version": "0.0.0", "version": "0.0.0",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start:withInstall": "pnpm install && pnpm run start",
"start": "run-script-os", "start": "run-script-os",
"start:win32": "ng serve --port %PORT% --configuration development", "start:win32": "ng serve --port %PORT% --configuration development",
"start:default": "ng serve --port $PORT --configuration development", "start:default": "ng serve --port $PORT --configuration development",

View File

@@ -13,7 +13,7 @@ IResourceBuilder<ProjectResource> api = builder
.WaitFor(postgres); .WaitFor(postgres);
builder builder
.AddNpmApp("Vegasco-Web", "../Vegasco-Web") .AddNpmApp("Vegasco-Web", "../Vegasco-Web", scriptName: "start:withInstall")
.WithReference(api) .WithReference(api)
.WaitFor(api) .WaitFor(api)
.WithHttpEndpoint(port: 44200, env: "PORT", isProxied: false) .WithHttpEndpoint(port: 44200, env: "PORT", isProxied: false)