feat: refactor and refine authentication system with decoupled user management and admin console

This commit is contained in:
2026-05-30 14:05:11 +05:00
parent f35908095c
commit f6ea8a99d9
17 changed files with 816 additions and 191 deletions
+11
View File
@@ -0,0 +1,11 @@
# MongoDB Connection Options
DATABASE_URL=mongodb://localhost:27017
DATABASE_NAME=stick_db
# Cryptography Settings
# Ensure this secret is a strong, random character sequence in production
JWT_SECRET=super_secret_template_signing_key_that_is_at_least_32_characters_long
# Web Server Options
HOST=127.0.0.1
PORT=3000