14 lines
384 B
JavaScript
14 lines
384 B
JavaScript
const path = require('path');
|
|
|
|
const accessTokenSecret = 'cecinestpasunecledauthentificationjwt';
|
|
const dbFile = path.join(__dirname, "data", "chikinz.db");
|
|
const catclient = '/Users/paul/scratch/printer/catclient.py';
|
|
const authPassword = 'goldchocoboisbestchocobo.goldchocoboisonlychocobo';
|
|
|
|
module.exports = {
|
|
accessTokenSecret,
|
|
dbFile,
|
|
catclient,
|
|
authPassword,
|
|
};
|