From 56cf8ec4cca1ccbba1484ab05f0f4e4574774266 Mon Sep 17 00:00:00 2001 From: mscadm Date: Mon, 13 Jul 2026 15:44:27 +0000 Subject: [PATCH] chore: temporaeres QA-Seed-Skript 2 fuer Feature-Verifikation --- deploy/qa_seed2.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 deploy/qa_seed2.py diff --git a/deploy/qa_seed2.py b/deploy/qa_seed2.py new file mode 100644 index 0000000..4e2b451 --- /dev/null +++ b/deploy/qa_seed2.py @@ -0,0 +1,9 @@ +import sys +sys.path.insert(0, '/app') +import db +from werkzeug.security import generate_password_hash + +tid = db.create_tenant('QA Verifikation Tenant 2', None, None, 1095, 1825, 480, 2880) +uid = db.create_user(tid, 'qa-verify2@example.com', generate_password_hash('QaVerify12345'), role='admin') +print('TENANT_ID=%s' % tid) +print('USER_ID=%s' % uid)