feat: add deployment automation scripts

This commit is contained in:
2025-12-27 15:42:26 +11:00
parent 87f1711cbd
commit 33b2b708f4
9 changed files with 951 additions and 0 deletions

10
config.example.js Normal file
View File

@@ -0,0 +1,10 @@
// Rename this file to config.js and add your real credentials
// This file is ignored by git
module.exports = {
// Example credentials
DB_HOST: "localhost",
DB_USER: "root",
DB_PASS: "password",
// Add any other secrets here
};