mirror of https://github.com/Facinorous-420/dick
parent
d1d520817a
commit
be014f7d62
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
@ -0,0 +1,40 @@
|
|||||||
|
import { templatePathBuilder } from "./utils/utils"
|
||||||
|
|
||||||
|
/* ------------------- USER CONSTANTS ------------------------ */
|
||||||
|
|
||||||
|
// Variable to set DICK to run as a submodule to ASS or separately
|
||||||
|
// true = submodule | false = separate
|
||||||
|
export const DICK_SUBMODULE = false
|
||||||
|
|
||||||
|
/* ------------------- ASS HOST INFORMATION ---------------------------- */
|
||||||
|
// Boolean variable if your ASS is secured with HTTPS
|
||||||
|
// true = https | false = http
|
||||||
|
export const ASS_SECURE = false
|
||||||
|
|
||||||
|
// This is the domain your ASS is hosted at: "127.0.0.1" | "cdn.domain.com"
|
||||||
|
export const ASS_DOMAIN = "127.0.0.1:40115"
|
||||||
|
|
||||||
|
// If running DICK in separate mode, it will need to know where your ASS is installed
|
||||||
|
// do note that it must be a *relative* location.
|
||||||
|
// For example "../ass" means ass is installed in the parent directory.
|
||||||
|
export const ASS_LOCATION = "../ass"
|
||||||
|
|
||||||
|
/* ------------------- STAFF ID CONSTANTS ---------------------------- */
|
||||||
|
// this will eventually be moved away from constants
|
||||||
|
// Array of all USERNAMES in your ASS auth.json file that will have admin access: ["ass", "dick", "frank"]
|
||||||
|
export const STAFF_IDS = ["ass"]
|
||||||
|
|
||||||
|
|
||||||
|
/* ------------------- SYSTEM CONSTANTS ------------------------ */
|
||||||
|
// Port to run the server on, change if you have something else running on that port
|
||||||
|
export const PORT = "3000"
|
||||||
|
|
||||||
|
/* ------------------- TEMPLATE PATH CONSTANTS ------------------------ */
|
||||||
|
export const TEMPLATE = {
|
||||||
|
USER: templatePathBuilder("/user.ejs"),
|
||||||
|
PUBLIC: templatePathBuilder("/public.ejs"),
|
||||||
|
ERRORS: {
|
||||||
|
403: templatePathBuilder("/errors/403.ejs"),
|
||||||
|
404: templatePathBuilder("/errors/404.ejs")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue