- Removed SAML configuration deployment calls from PostInstanceInitService. - Updated DeploySamlConfigurationAsync to improve template fetching logic from Git and local directories. - Added Authentik flow and keypair models for better representation in the UI. - Enhanced SettingsViewModel to include Authentik settings with save and test functionality. - Updated UI to support Authentik configuration, including dropdowns for flows and keypairs. - Changed default CMS server name template to "app.ots-signs.com" across various files. - Improved password handling in SshDockerCliService for secure shell command execution. - Added new template file for settings-custom.php in the project structure.
59 lines
719 B
Plaintext
59 lines
719 B
Plaintext
# .gitignore for C#/.NET projects on macOS
|
|
# Generated for Visual Studio, Rider, and dotnet CLI workflows
|
|
|
|
# Visual Studio
|
|
.vs/
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# Build results
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
build/
|
|
publish/
|
|
artifacts/
|
|
|
|
# Rider
|
|
.idea/
|
|
|
|
# Resharper
|
|
_ReSharper*/
|
|
*.DotSettings.user
|
|
|
|
# NuGet
|
|
*.nupkg
|
|
packages/
|
|
project.lock.json
|
|
|
|
# Dotnet
|
|
*.db
|
|
*.db-journal
|
|
secrets.json
|
|
dotnet_user_secrets
|
|
|
|
# Logs
|
|
*.log
|
|
TestResults/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.AppleDouble
|
|
._*
|
|
Icon
|
|
|
|
# Editor directories and files
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Temporary files
|
|
*~
|
|
*.tmp
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Ignore appsettings development files (if you keep secrets locally)
|
|
appsettings.Development.json
|
|
.template-cache/ |