We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. The project can swap config files or connection strings between environments
Describe the solution you'd like The project can hide the aspnet setting files or at least use the environments variable to define environments
Ex: when setting the ASPNET_ENV='development' The aspnet config file will be set the connection string to
"DefaultConnection": "Host=localhost:5432;Username=planthor-admin;Password=Planthor@123;Database=PLANTHOR_IDENTITY"
or set ASPNET_ENV='container_development'
"DefaultConnection": "Host=postgres:5432;Username=planthor-admin;Password=Planthor@123;Database=PLANTHOR_IDENTITY"
and Production configs can be hidden in the Azure key vault
Additional context Document links: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/environments?view=aspnetcore-8.0
The text was updated successfully, but these errors were encountered:
akakshuki
No branches or pull requests
Is your feature request related to a problem? Please describe.
The project can swap config files or connection strings between environments
Describe the solution you'd like
The project can hide the aspnet setting files or at least use the environments variable to define environments
Ex:
when setting the ASPNET_ENV='development'
The aspnet config file will be set the connection string to
or set ASPNET_ENV='container_development'
and Production configs can be hidden in the Azure key vault
Additional context
Document links: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/environments?view=aspnetcore-8.0
The text was updated successfully, but these errors were encountered: