This commit is contained in:
2024-10-29 05:37:46 +01:00
commit fe33c5f123
34 changed files with 20148 additions and 0 deletions

13
config/env/development/database.js vendored Normal file
View File

@@ -0,0 +1,13 @@
module.exports = ({ env }) => ({
connection: {
client: 'postgres',
connection: {
host: env('DATABASE_HOST', 'db'),
port: env.int('DATABASE_PORT', 5432),
database: env('DATABASE_NAME', 'strapi'),
user: env('DATABASE_USERNAME', 'strapi'),
password: env('DATABASE_PASSWORD', '^5RHwTf7xThya@'),
ssl: env.bool('DATABASE_SSL', false)
}
}
});