-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
18 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...Boilerplate/Bit.Boilerplate/src/Client/Boilerplate.Client.Web/appsettings.Production.json
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
{ | ||
"WebAppRender": { | ||
"BlazorMode": "BlazorAuto" | ||
"BlazorMode": "BlazorWebAssembly" | ||
}, | ||
"$schema": "https://json.schemastore.org/appsettings.json" | ||
} |
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 |
---|---|---|
|
@@ -3,19 +3,16 @@ | |
"ConnectionStrings": { | ||
"SqlServerConnectionString": "Data Source=(localdb)\\mssqllocaldb; Initial Catalog=BoilerplateDb;Integrated Security=true;Application Name=Boilerplate;TrustServerCertificate=True;", | ||
"SqliteConnectionString": "Data Source=App_Data/BoilerplateDb.db;", | ||
"SqliteConnectionString_Comment": "To debug inside docker, change ConnectionStrings__SqliteConnectionString's value in launchSettings.json", | ||
"PostgreSQLConnectionString": "User ID=postgres;Password=postgres;Host=localhost;Database=BoilerplateDb;", | ||
"MySqlSQLConnectionString": "Server=localhost;Port=3306;Database=BoilerplateDb;Uid=root;Pwd=123456;", | ||
"AzureBlobStorageSasUrl": "emulator", | ||
"AzureBlobStorageSasUrl_Comment": "More info about blob storage sas url at https://learn.microsoft.com/en-us/azure/ai-services/translator/document-translation/how-to-guides/create-sas-tokens?tabs=blobs#create-sas-tokens-in-the-azure-portal" | ||
"AzureBlobStorageSasUrl": "emulator" | ||
|
||
}, | ||
"DataProtectionCertificatePassword": "P@ssw0rdP@ssw0rd", | ||
"DataProtectionCertificatePassword_Comment": "It can also be configured using: dotnet user-secrets set 'DataProtectionCertificatePassword' 'P@ssw0rdP@ssw0rd'", | ||
"Identity": { | ||
"Issuer": "Boilerplate", | ||
"Audience": "Boilerplate", | ||
"BearerTokenExpiration": "0.00:05:00", | ||
"BearerTokenExpiration_Comment": "BearerTokenExpiration used as JWT's expiration claim, access token's expires in and cookie's max age. Format: D.HH:mm:ss", | ||
"RefreshTokenExpiration": "14.00:00:00", | ||
"EmailTokenLifetime": "0.00:02:00", | ||
"PhoneNumberTokenLifetime": "0.00:02:00", | ||
|
@@ -36,7 +33,6 @@ | |
}, | ||
"Email": { | ||
"Host": "LocalFolder", | ||
"Host_Comment": "Local folder means storing emails as .eml file in App_Data/sent-emails folder (Recommended for testing purposes only) instead of sending them using smtp server.", | ||
"Port": "587", | ||
"DefaultFromEmail": "[email protected]", | ||
"UserName": null, | ||
|
@@ -49,26 +45,18 @@ | |
}, | ||
"UserProfileImagesDir": "attachments/profiles/", | ||
"GoogleRecaptchaSecretKey": "6LdMKr4pAAAAANvngWNam_nlHzEDJ2t6SfV6L_DS", | ||
"AdsPushVapid_Comment": "https://github.com/adessoTurkey-dotNET/AdsPush", | ||
"AdsPushVapid": { | ||
"AdsPushVapid_Comment": "Web push's vapid. More info at https://tools.reactpwa.com/vapid/", | ||
"Subject": "mailto:[email protected]", | ||
"PrivateKey": "dMIR1ICj-lDWYZ-ZYCwXKyC2ShYayYYkEL-oOPnpq9c", | ||
"PublicKey_Comment": "Set public key in Client.Core's appsettings.json" | ||
"PrivateKey": "dMIR1ICj-lDWYZ-ZYCwXKyC2ShYayYYkEL-oOPnpq9c" | ||
}, | ||
"AdsPushAPNS": { | ||
"P8PrivateKey": null, | ||
"P8PrivateKey_Comment": "p8 certificate string without spaces and start/end tags.", | ||
"P8PrivateKeyId": null, | ||
"P8PrivateKeyId_Comment": "10-digit p8 certificate id; often part of a downloadable certificate filename", | ||
"TeamId": null, | ||
"TeamId_Comment": "10-digit Apple team id shown on the Apple Developer Membership Page", | ||
"AppBundleIdentifier": null, | ||
"EnvironmentType": "Development", | ||
"EnvironmentType_Comment": "Apns Env one of Development or Production" | ||
"EnvironmentType": "Development" | ||
}, | ||
"AdsPushFirebase": { | ||
"AdsPushFirebase_Comment": "Filed names in service_account.json => project_id,private_key_id,private_key,client_email,client_id,client_x509_cert_url", | ||
"Type": "service_account", | ||
"AuthUri": "https://accounts.google.com/o/oauth2/auth", | ||
"TokenUri": "https://oauth2.googleapis.com/token", | ||
|