You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
379 B
17 lines
379 B
// Update with your config settings. |
|
|
|
export default <Record<string,any>> { |
|
|
|
// Development settings use a simple SQLite file. |
|
development: { |
|
client: "sqlite3", |
|
connection: { |
|
filename: "./dev.sqlite3" |
|
} |
|
}, |
|
|
|
// In production, we base the config on an environment |
|
// variable setting. |
|
production: JSON.parse(process.env.MUDBASE_DB_CONFIG || "{}") |
|
|
|
};
|
|
|