-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
43 lines (40 loc) · 1.43 KB
/
Copy pathconfig.js
File metadata and controls
43 lines (40 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/********************************
* ____ _ _ *
* | _ \ __ _(_)_ __ | |_ _ __ *
* | |_) / _` | | '_ \| __| '__| *
* | __/ (_| | | | | | |_| | *
* |_| \__,_|_|_| |_|\__|_| *
* © GreyWolf-dev & KodeurKubik *
*********************************/
const chalk = require('chalk');
const prefix = '/Volumes/KubikDisk/Paintr' // `${__dirname}/images`
module.exports = {
paths: {
all: prefix + '/ready/tolabel',
bruiter: prefix + '/bruit',
fullBruit: prefix + '/random',
resizer: prefix + '/ready/images',
descripteur: prefix + '/describe',
imageDescriptions: prefix + '/ready/descriptions',
readyImages: prefix + '/ready/images',
upscaledImages: prefix + '/ready/upImages',
discordUpscales: prefix + '/upscale'
},
ports: {
bruiteur: 9001,
resizer: 9002,
generator: 9003,
upscaler: 9004,
},
discord: {
token: 'Nzk0NTI3OTYwNjc3NDgyNTY2.GLTI9h.R1N9O5819E9Y1ROChh6yny8QH0L3umxtrrU0iU',
client_id: '794527960677482566',
client_secret: 'yWfFsC-2x8lMlAnZbpt7VzNiHIEyGsbJ',
public_key: '79e7fe37125e4e1858bb8c3b7518100b824540886732f5b178ca2809f66ec7e1',
},
log: {
success: (text) => console.log('[✅] ' + chalk.green(text)),
info: (text) => console.log('[⚠️] ' + chalk.yellow(text)),
error: (text) => console.log('[‼️] ' + chalk.red(text)),
}
}