Files
kServers-kList/src/ver/0.0.3/ecosystem.config.js
Unstable Kitsune 4063deba42 feat: implement kList webapp with Flask framework
Adds complete Flask-based web application for server listing service, including routing, database integration, Discord OAuth, templates, static assets, and configuration.

Handles user authentication, server browsing, and admin dashboard functionality. BROKEN
2025-09-03 05:44:20 -04:00

41 lines
1.0 KiB
JavaScript

module.exports = {
apps : [{
name : "kList",
namespace: "kServers",
version: "0.0.3",
interpreter: "/opt/klist/bin/python",
script: "run.py",
cwd: "/src/kList-v2/",
interpreter_args: "-u",
watch : false,
error_file: "~/.config/kList/log/kList.error",
out_file: "~/.config/kList/log/kList.output",
log_file: "~/.config/kList/log/kList.log",
time: true,
log_date_format : "[ MMM|DD|YYYY - hh:mm a ]",
min_uptime : 300,
listen_timeout : 8000,
kill_timeout : 1600,
wait_ready : true,
post_update: ["echo kList is lanuching!"],
env_production: {
APP_ENV: "production",
POSTGRES_URI: "postgres://USER:PASSWORD@HOST:POST/DATABASE",
BOT_TOKEN: "",
CLIENT_ID: "",
CLIENT_SECRET: "",
SITE_NAME: "kServers",
SECRET_KEY: "",
ADMIN_USER_IDS: []
}, env_development: {
APP_ENV: "development",
POSTGRES_URI: "postgres://USER:PASSWORD@HOST:POST/DATABASE",
BOT_TOKEN: "",
CLIENT_ID: "",
CLIENT_SECRET: "",
SITE_NAME: "kServers",
SECRET_KEY: "",
ADMIN_USER_IDS: []
}
}]
}