mirror of
https://github.com/outline/outline.git
synced 2025-12-16 16:24:46 -06:00
12 lines
324 B
Plaintext
12 lines
324 B
Plaintext
require("@dotenvx/dotenvx").config({
|
|
path: process.env.NODE_ENV === "test" ? ".env.test" : ".env",
|
|
});
|
|
|
|
var path = require('path');
|
|
|
|
module.exports = {
|
|
'config': path.resolve('server/config', 'database.js'),
|
|
'migrations-path': path.resolve('server', 'migrations'),
|
|
'models-path': path.resolve('server', 'models'),
|
|
}
|