mirror of
https://github.com/Retropex/apolloapi-v2.git
synced 2025-05-16 13:10:50 +02:00
17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
const dotenv = require('dotenv')
|
|
const { join } = require('path')
|
|
|
|
dotenv.config({ silent: true })
|
|
|
|
module.exports = {
|
|
db: {
|
|
url: join(__dirname, '..', 'futurebit.sqlite')
|
|
},
|
|
settings: {
|
|
},
|
|
server: {
|
|
secret: process.env.APP_SECRET,
|
|
port: process.env.PORT || 5000
|
|
}
|
|
}
|