chore: temporaeres QA-Seed-Skript fuer Feature-Verifikation

This commit is contained in:
mscadm 2026-07-13 15:32:11 +00:00
parent a07cbb77ab
commit 7070ec4c49
1 changed files with 9 additions and 0 deletions

9
deploy/qa_seed.py Normal file
View File

@ -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', None, None, 1095, 1825, 480, 2880)
uid = db.create_user(tid, 'qa-verify@example.com', generate_password_hash('QaVerify12345'), role='admin')
print('TENANT_ID=%s' % tid)
print('USER_ID=%s' % uid)