Jul 2nd - Fix Edit user password error

This commit is contained in:
2026-07-02 09:34:11 -04:00
parent ea04afe398
commit 7d94cfd016
2 changed files with 37 additions and 2 deletions
+7 -1
View File
@@ -70,7 +70,13 @@ audiences:
│ └── versions/ # Alembic migration scripts
├── gunicorn.conf.py
├── run.py # Entry point — calls eventlet.monkey_patch() first
── .env # Secrets (not committed)
── .env # Secrets (not committed)
└── license_server/ # Vendor-only — NOT shipped to customers
├── app.py # Internal Flask UI for generating license keys
├── generate_keys.py # One-time RSA key pair generator
├── requirements.txt # flask + cryptography
├── private_key.pem # RSA private key — NEVER commit or ship
└── licenses.db # SQLite log of issued keys
```
---