Initial commit

This commit is contained in:
2023-03-21 00:12:10 -04:00
commit bb911f8ffb
41 changed files with 4390 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export interface CommonConfig {
AWS_ACCOUNT_ID: string;
AWS_REGION: string;
DB_DATABASE: string;
DB_LOGGING?: boolean;
DB_SYNCHRONIZE?: boolean;
}

View File

@@ -0,0 +1,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_LOGGING: true,
DB_SYNCHRONIZE: true,
});