mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
12 lines
326 B
Plaintext
12 lines
326 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.json'),
|
|
'migrations-path': path.resolve('server', 'migrations'),
|
|
'models-path': path.resolve('server', 'models'),
|
|
}
|