diff --git a/.gitignore b/.gitignore index ff0a090..a830b1d 100644 --- a/.gitignore +++ b/.gitignore @@ -130,4 +130,7 @@ dist .pnp.* results.sarif -tmpconf \ No newline at end of file +tmpconf + +#Ignore vscode AI rules +.github/instructions/codacy.instructions.md diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..26b4161 --- /dev/null +++ b/appsettings.json @@ -0,0 +1,59 @@ +{ + "ConnectionStrings": { + "Bizpay": "" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*", + + "IdentityServer.Authority": "https://auth-service-prod.example.com/oauth", + "Audit": { + "Enabled": true, + "ServiceBusConnectionString": "" + }, + "Batch": { + "ServiceBusConnectionString": "Endpoint=sb://northwind-events-hub.servicebus.windows.net/;SharedAccessKeyName=EventListener;SharedAccessKey=dF8nK2pL9mN4qR7sT3uV6wX1yZ5aB8cD2eF7gH3iJ9k=" + }, + "IdentityServer.Extended": { + "IdentityWebExtURL": "https://identity-portal-ext.example.com/", + "ClientId": "WebApp.ClientPortal.v2", + "ClientSecret": "F8A3B9C7-D2E6-4F1A-8B5C-9D7E2F4A6B8C" + }, + + "AzureStorage": { + "WatermarkImageContainer": "somethingsomethingsomethingdarkside", + "ConnectionString": "" + }, + + "EmailConfiguration": { + "MailServer": "smtp.yo.lo", + "Username": "", + "Password": "", + "EmailFromAddress": "no_reply@fabrikam.com", + "EmailFromName": "Big Blue World", + "SupportEmailAddresses": "support@example.com;helpdesk@example.com", + "ContactNumber": "876-929-8661" + }, + + "ApplicationUri": { + "Base": "https://localhost:4200", + "SubscriptionRenewUri": "https://localhost:4200" + }, + + "OnlinePaymentProcessorConfig": { + "URI": "https://localhost:44303/", + "ApplicationId": "ContosoWebPortal", + "IdentitySharedSecret": "pL9mN3oQ6rS2tU8vW1xY5zA7bC4dE9fG2hI6jK3lM8n=", + "HashSecret": "tU7vW2xY6zA1bC5dE9fG3hI8jK2lM6nO1pQ5rS9tU3vW7xY2zA6bC1dE5fG9hI4jK8lM2nO6pQ1rS5tU9vW4xY8zA2bC6dE1fG5hI9jK3lM7nO2pQ6rS1tU5vW9xY3zA7bC2dE6fG1hI5jK9lM3nO7pQ2rS6tU1vW5xY9zA4bC8dE2fG6hI1jK5lM9nO3pQ7rS2tU6vW1xY5zA9bC3dE7fG2hI6jK1lM5nO9pQ3rS7tU2vW6xY1zA5bC9dE3fG7hI2jK6lM1nO5pQ9rS3tU7vW2xY6zA1bC5dE9fG3hI7jK2lM6nO1pQ5rS9tU3vW7xY2zA6bC1dE5fG9hI4jK8lM2nO6pQ1rS5tU9vW4xY8zA2bC6dE1fG5hI9jK3lM7nO2pQ6rS1tU5vW9xY3zA7bC2dE6fG1hI5jK9lM3nO7pQ2rS6tU1vW5xY9zA4bC8dE2fG6hI1jK5lM9nO3pQ7rS2tU6vW1xY5zA9bC3dE7fG2hI6jK1lM5nO9pQ3rS7tU2vW6xY1zA5bC9dE3fG7hI2jK6lM1nO5pQ9rS3tU7vW2xY6zA==" + }, + + "IsDevelopmentDeployment": "true", + "OrderExpireDayLength": 4, + "CapacityWarningLimit": 3, + "TokenSize": 32 +}