Audit logging, secrets manager completion, sns and sqs wrapping up
This commit is contained in:
@@ -4,4 +4,5 @@ export interface CommonConfig {
|
||||
DB_DATABASE: string;
|
||||
DB_LOGGING?: boolean;
|
||||
DB_SYNCHRONIZE?: boolean;
|
||||
HOST: string;
|
||||
}
|
||||
|
||||
@@ -3,7 +3,9 @@ import { CommonConfig } from "./common-config.interface";
|
||||
export default (): CommonConfig => ({
|
||||
AWS_ACCOUNT_ID: '123456789012',
|
||||
AWS_REGION: 'us-east-1',
|
||||
DB_DATABASE: ':memory:', // 'local-aws.sqlite', // :memory:
|
||||
// DB_DATABASE: ':memory:',
|
||||
DB_DATABASE: 'local-aws.sqlite',
|
||||
DB_LOGGING: true,
|
||||
DB_SYNCHRONIZE: true,
|
||||
HOST: 'http://localhost:8081',
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user