diff --git a/Claude.md b/Claude.md index 2104137..bd6be52 100644 --- a/Claude.md +++ b/Claude.md @@ -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 ``` --- diff --git a/app/templates/admin/edit_user.html b/app/templates/admin/edit_user.html index 63453b0..7529d83 100644 --- a/app/templates/admin/edit_user.html +++ b/app/templates/admin/edit_user.html @@ -44,7 +44,11 @@

- + +
+
+ +
@@ -57,3 +61,28 @@
{% endblock %} + +{% block scripts %} + +{% endblock %}