Add project scaffolding and documentation

Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
This commit is contained in:
2026-06-21 09:31:47 +02:00
parent cfeeccbf53
commit d694c8b8e3
197 changed files with 8583 additions and 56 deletions
+28
View File
@@ -0,0 +1,28 @@
const http = require("http");
const options = {
hostname: "localhost",
port: process.env.PORT || 3000,
path: "/",
method: "GET",
timeout: 2000,
};
const req = http.request(options, (res) => {
if (res.statusCode >= 200 && res.statusCode < 400) {
process.exit(0);
} else {
process.exit(1);
}
});
req.on("error", () => {
process.exit(1);
});
req.on("timeout", () => {
req.destroy();
process.exit(1);
});
req.end();