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
This commit is contained in:
41
src/ver/0.0.3/ecosystem.config.js
Normal file
41
src/ver/0.0.3/ecosystem.config.js
Normal file
@@ -0,0 +1,41 @@
|
||||
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: []
|
||||
}
|
||||
}]
|
||||
}
|
||||
Reference in New Issue
Block a user