From 04c3cb38510b441a088ebb92e2a0128ce8b3d27c Mon Sep 17 00:00:00 2001 From: H3ALY Date: Tue, 28 Oct 2025 11:59:04 +0000 Subject: [PATCH] Current config structure --- internal/platform/config/config.json | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 internal/platform/config/config.json diff --git a/internal/platform/config/config.json b/internal/platform/config/config.json new file mode 100644 index 0000000..b5b5033 --- /dev/null +++ b/internal/platform/config/config.json @@ -0,0 +1,35 @@ +{ + "csrf": { + "cookieName": "" + }, + "database": { + "server": "", + "port": 3306, + "databaseName": "", + "maxOpenConnections": 10, + "maxIdleConnections": 5, + "connectionMaxLifetime": "", + "username": "", + "password":"" + }, + "httpServer": { + "port": 8082, + "address": "", + "productionMode": false + }, + "license": { + "apiUrl": "", + "apiKey": "" + }, + "session": { + "cookieName": "", + "lifetime": "", + "idleTimeout": "", + "rememberCookieName": "", + "rememberDuration": "" + }, + "site": { + "siteName": "", + "copyrightYearStart": 0 + } +} \ No newline at end of file