Skip to content

Commit

Permalink
chore: update default env value to make it more straightforward
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainLanz committed Sep 3, 2024
1 parent 0e218c1 commit b8a44f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/lucid/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export const DIALECTS: {
DB_HOST: '127.0.0.1',
DB_PORT: 3306,
DB_USER: 'root',
DB_PASSWORD: '',
DB_DATABASE: '',
DB_PASSWORD: 'root',
DB_DATABASE: 'app',
},
envValidations: {
DB_HOST: `Env.schema.string({ format: 'host' })`,
Expand All @@ -57,9 +57,9 @@ export const DIALECTS: {
envVars: {
DB_HOST: '127.0.0.1',
DB_PORT: 5432,
DB_USER: 'postgres',
DB_PASSWORD: '',
DB_DATABASE: '',
DB_USER: 'root',
DB_PASSWORD: 'root',
DB_DATABASE: 'app',
},
envValidations: {
DB_HOST: `Env.schema.string({ format: 'host' })`,
Expand All @@ -75,9 +75,9 @@ export const DIALECTS: {
envVars: {
DB_HOST: '127.0.0.1',
DB_PORT: 1433,
DB_USER: 'sa',
DB_PASSWORD: '',
DB_DATABASE: '',
DB_USER: 'root',
DB_PASSWORD: 'root',
DB_DATABASE: 'app',
},
envValidations: {
DB_HOST: `Env.schema.string({ format: 'host' })`,
Expand Down

0 comments on commit b8a44f0

Please sign in to comment.