mirror of
https://github.com/linuxserver/heimdalljs.git
synced 2026-02-20 05:12:24 +08:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
const path = require('path')
|
|
|
|
require('dotenv').config()
|
|
|
|
module.exports = {
|
|
jwtSecret: process.env.JWT_SECRET || 'CHANG_ME',
|
|
uploadDir: process.env.UPLOAD_DIR || path.resolve(path.join(__dirname, '../uploads'))
|
|
}
|