Skip to content

Commit

Permalink
update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
iammukeshm committed Sep 2, 2024
1 parent a763731 commit 39a02af
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -458,4 +458,3 @@ $RECYCLE.BIN/
!.vscode/extensions.json

**/Internal/Generated
/src/api/server/appsettings.Development.json
68 changes: 68 additions & 0 deletions src/api/server/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"DatabaseOptions": {
"Provider": "postgresql",
"ConnectionString": "Server=192.168.1.110;Database=fullstackherodb;User Id=postgres;Password=password"
},
"OriginOptions": {
"OriginUrl": "https://localhost:7000"
},
"CacheOptions": {
"Redis": ""
},
"HangfireOptions": {
"Username": "admin",
"Password": "Secure1234!Me",
"Route": "/jobs"
},
"JwtOptions": {
"Key": "QsJbczCNysv/5SGh+U7sxedX8C07TPQPBdsnSDKZ/aE=",
"TokenExpirationInMinutes": 60,
"RefreshTokenExpirationInDays": 7
},
"MailOptions": {
"From": "[email protected]",
"Host": "smtp.ethereal.email",
"Port": 587,
"UserName": "[email protected]",
"Password": "KbuTCFv4J6Fy7256vh",
"DisplayName": "Mukesh Murugan"
},
"CorsOptions": {
"AllowedOrigins": [
"https://localhost:7100",
"http://localhost:7100",
"http://localhost:5010"
]
},
"Serilog": {
"Using": [
"Serilog.Sinks.Console"
],
"MinimumLevel": {
"Default": "Debug"
},
"WriteTo": [
{
"Name": "Console"
}
]
},
"RateLimitOptions": {
"EnableRateLimiting": false,
"PermitLimit": 5,
"WindowInSeconds": 10,
"RejectionStatusCode": 429
},
"SecurityHeaderOptions": {
"Enable": true,
"Headers": {
"XContentTypeOptions": "nosniff",
"ReferrerPolicy": "no-referrer",
"XXSSProtection": "1; mode=block",
"XFrameOptions": "DENY",
"ContentSecurityPolicy": "block-all-mixed-content; style-src 'self' 'unsafe-inline'; font-src 'self'; form-action 'self'; frame-ancestors 'self'; img-src 'self' data:; script-src 'self' 'unsafe-inline'",
"PermissionsPolicy": "accelerometer=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()",
"StrictTransportSecurity": "max-age=31536000"
}
}
}

0 comments on commit 39a02af

Please sign in to comment.