26 lines
587 B
Plaintext
26 lines
587 B
Plaintext
module.exports = {
|
|
name: "CRTelemetry",
|
|
host: "localhost",
|
|
protocol: "http",
|
|
port: 80,
|
|
username: "admin",
|
|
password: "password",
|
|
logger: {
|
|
level: "info",
|
|
error_path: "/app/logs/error.log",
|
|
full_path: "/app/logs/combined.log"
|
|
},
|
|
timestamp_format: "HH:mm:ss DD-MM-YYYY",
|
|
views_directory: "/app/views",
|
|
temp_directory: "/app/temp",
|
|
paths: {
|
|
css: {
|
|
web: "/css",
|
|
src: "/src/css"
|
|
},
|
|
js: {
|
|
web: "/javascript",
|
|
src: "/src/javascript"
|
|
}
|
|
}
|
|
}; |