Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmoradi committed Dec 4, 2024
1 parent bdb1d28 commit 48b6d83
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
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"
}
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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,
Expand All @@ -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",
Expand Down

0 comments on commit 48b6d83

Please sign in to comment.