mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
79 lines
1.7 KiB
JavaScript
79 lines
1.7 KiB
JavaScript
module.exports = {
|
|
app_config: {
|
|
id: "comty",
|
|
siteName: 'Comty',
|
|
copyright: 'RageStudio©',
|
|
MainPath: '/',
|
|
|
|
LogoPath: '/logo.svg',
|
|
FullLogoPath: '/full_logo.svg',
|
|
DarkFullLogoPath: '/dark_full_logo.svg',
|
|
DarkLogoPath: '/dark_logo.svg',
|
|
|
|
api_interface: 'https://api.ragestudio.net',
|
|
api_prefix: 'ycorejs_apiv3',
|
|
|
|
app_settings_storage: 'app_settings',
|
|
endpoint_global: 'https://comty.pw',
|
|
proxy_local: 'http://localhost:8000',
|
|
|
|
session_token_storage: 'cid',
|
|
session_data_storage: 'data',
|
|
|
|
appTheme_container: 'app_theme',
|
|
appTheme_desiredContrast: 7,
|
|
// Contrast level AA = 4.5, Level AAA = 7
|
|
// Reference: https://www.w3.org/WAI/WCAG21/quickref/?versions=2.0&showtechniques=143#qr-visual-audio-contrast-contrast
|
|
|
|
},
|
|
|
|
i18n: {
|
|
languages: [
|
|
{
|
|
key: 'en',
|
|
title: 'English',
|
|
},
|
|
],
|
|
defaultLanguage: 'en',
|
|
},
|
|
|
|
layouts: [
|
|
{
|
|
name: 'primary',
|
|
include: [/\/main/, /\/settings/, /\/saves/, /\/pro/, /\/chats/, /\//],
|
|
exclude: [/\/publics/, /\/login/ ],
|
|
},
|
|
{
|
|
name: 'public',
|
|
include: [/.*/]
|
|
}
|
|
],
|
|
|
|
// Default Behaviors
|
|
defaults: {
|
|
app_model: "app",
|
|
verbosity: false,
|
|
session_noexpire: false,
|
|
search_ontype: false,
|
|
overlay_loosefocus: true,
|
|
render_pagetransition_preset: 'moveToRightScaleUp',
|
|
post_catchlimit: '20',
|
|
post_hidebar: true,
|
|
|
|
feed_autorefresh: false,
|
|
keybinds: {
|
|
nextElement: "J",
|
|
prevElement: "U",
|
|
createNew: "N"
|
|
}
|
|
},
|
|
|
|
stricts: {
|
|
post_maxlenght: '512',
|
|
// In KB
|
|
api_maxpayload: '101376',
|
|
api_maxovertick: 10,
|
|
}
|
|
|
|
};
|