forked from eclipse-aaspe/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .gitignore and Re-add Missing launchSettings.json
Please ensure that the launchSettings.json file is always included in the repository to avoid project setup issues. Updated .gitignore: Consolidated and cleaned up existing entries. Added ignore patterns for modern development tools and environments. Ensured consistent use of patterns and directories. Re-added launchSettings.json: The launchSettings.json file is crucial for the proper functioning of our projects. Refer to this Stack Overflow discussion for insights on why it's important not to ignore this file.
- Loading branch information
Showing
4 changed files
with
54 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"profiles": { | ||
"IIS Express": { | ||
"commandName": "IISExpress", | ||
"commandLineArgs": "--port 51710 --data-path C:\\Develop\\Aasx\\repo --edit --secret-string=123", | ||
"launchBrowser": true, | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
} | ||
}, | ||
"AasxServerBlazor": { | ||
"commandName": "Project", | ||
"commandLineArgs": "--no-security --secret-string-api 1234 --aasx-in-memory 1000 --data-path \"C:\\Development\" --edit --external-blazor http://localhost:5001", | ||
"launchBrowser": true, | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development", | ||
"AASREGISTRY": "https://registry.dpp40-2-v2.industrialdigitaltwin.org", | ||
"IFRAMEPATH": "https://dpp40-2-v2.industrialdigitaltwin.org/dashboard/submodelViewV3.html" | ||
}, | ||
"applicationUrl": "http://localhost:5001", | ||
"jsWebView2Debugging": true | ||
} | ||
}, | ||
"iisSettings": { | ||
"windowsAuthentication": false, | ||
"anonymousAuthentication": true, | ||
"iisExpress": { | ||
"applicationUrl": "http://localhost:56189", | ||
"sslPort": 0 | ||
} | ||
} | ||
} |