From 4f2fa86a493d8e94070d05a33a087eee9b7fdc70 Mon Sep 17 00:00:00 2001 From: "Jokob @NetAlertX" <96159884+jokob-sk@users.noreply.github.com> Date: Fri, 3 Apr 2026 01:56:42 +0000 Subject: [PATCH] feat(docs): Update coding standards to clarify database storage guidelines --- .github/skills/code-standards/SKILL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/skills/code-standards/SKILL.md b/.github/skills/code-standards/SKILL.md index 00128188..37e6932b 100644 --- a/.github/skills/code-standards/SKILL.md +++ b/.github/skills/code-standards/SKILL.md @@ -13,6 +13,7 @@ description: NetAlertX coding standards and conventions. Use this when writing c - follow DRY principle - maintainability of code is more important than speed of implementation - code files should be less than 500 LOC for better maintainability - DB columns must not contain underscores, use camelCase instead (e.g., deviceInstanceId, not device_instance_id) +- treat DB as temporary storage for stats, long term configuration should be stored in the /config folder, the /config folder should allow you to restore most of your functionality (excluding historical data) ## File Length