aboutsummaryrefslogtreecommitdiff
path: root/config.sample.js
blob: 721a0650b85ecf6cd4c412e4e83189e1f044cb60 (plain) (blame)
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
44
45
46
47
module.exports = {

	/* 
	NOTES:
		All folders specified on this file will be created automagically.
		Ideally the only options you should change are port and basedomain.
	*/

	// Token to use on the api. Leave blank for public
	TOKEN: 'YOURSUPERSECRETTOKEN',

	// Port on which to run the server
	port: 9999,

	// Uploads config
	uploads: {

		// Where to serve the uploaded files.
		basedomain: 'https://i.kanacchi.moe/',

		// If prefix is set, it will be appended at the end of basedomain.
		// Ex: https://i.kanacchi.moe/prefix/k4n4.png
		// Leave blank to use the basedomain
		prefix: '',

		// Folder where images should be stored
		folder: 'uploads',

		// Max file size allowed
		maxsize: '512MB',

		// The length of the random generated name for the uploaded files
		fileLength: 4,
	},

	// Folder where to store logs
	logsFolder: 'logs',

	// The following values shouldn't be touched
	database: {
		client: 'sqlite3',
		connection: {
			filename: './database/db'
		},
		useNullAsDefault: true
	}
}