- Added SendEngineDbContext for managing database interactions. - Created SendEngineDbContextFactory for design-time database context creation. - Established dependency injection for the infrastructure layer. - Defined entity configurations for Tenant, MailingList, Subscriber, ListMember, EventInbox, Campaign, SendJob, SendBatch, DeliverySummary, AuthClient, AuthClientKey, and WebhookNonce. - Generated initial database migration snapshot. - Implemented installer program for database migration commands.
12 lines
414 B
Plaintext
12 lines
414 B
Plaintext
ASPNETCORE_ENVIRONMENT=Development
|
|
ConnectionStrings__Default=Host=localhost;Database=send_engine;Username=postgres;Password=postgres
|
|
ESP__Provider=ses
|
|
ESP__ApiKey=change_me
|
|
Db__AutoMigrate=true
|
|
Jwt__Issuer=member_center
|
|
Jwt__Audience=send_engine
|
|
Jwt__SigningKey=change_me_jwt_signing_key
|
|
Webhook__Secrets__member_center=change_me_webhook_secret
|
|
Webhook__TimestampSkewSeconds=300
|
|
Ses__SkipSignatureValidation=true
|