30 lines
836 B
Lua
30 lines
836 B
Lua
|
|
return {
|
|
-- IRC connection
|
|
IRC_NICK = 'memebot',
|
|
|
|
IRC_SERVER = 'some-domain.com',
|
|
IRC_PORT = 6697,
|
|
IRC_SECURE = true, -- If using SSL
|
|
IRC_CHANNELS = { '#bot-test' },
|
|
|
|
-- Image generation
|
|
IMGGEN_PATH_BRAINS = './images/brains/',
|
|
IMGGEN_PATH_OUTPUT = './images/output/',
|
|
IMGGEN_PATH_FONTS = {
|
|
'/usr/share/fonts/TTF',
|
|
'/usr/share/fonts/truetype/dejavu',
|
|
'/usr/local/share/fonts/TTF',
|
|
},
|
|
|
|
-- Image storage and presentation
|
|
STORAGE_SERVER = 'image-host.com',
|
|
STORAGE_SERVER_PATH = '~someuser/images/',
|
|
STORAGE_DIR_URL = 'https://image-host.com/myimages/',
|
|
|
|
-- Lua stuff
|
|
LUA_EXTRA_PATH = nil, -- Set a string here if you are using libraries
|
|
LUA_EXTRA_CPATH = nil, -- located in weird location.
|
|
}
|
|
|