chore: temporaeres QA-Seed-Skript 4

This commit is contained in:
mscadm 2026-07-13 16:06:25 +00:00
parent 57b532cbec
commit 9ab775f6e5
1 changed files with 11 additions and 0 deletions

11
deploy/qa_seed4.py Normal file
View File

@ -0,0 +1,11 @@
import sys
sys.path.insert(0, '/app')
import db
from werkzeug.security import generate_password_hash
tid = db.create_tenant('QA Verifikation Tenant 4', None, None, 1095, 1825, 480, 2880)
uid = db.create_user(tid, 'qa-verify4@example.com', generate_password_hash('QaVerify12345'), role='admin')
uid2 = db.create_user(tid, 'qa-zweitkonto@example.com', generate_password_hash('QaVerify12345'), role='agent')
print('TENANT_ID=%s' % tid)
print('USER_ID=%s' % uid)
print('USER_ID2=%s' % uid2)