aboutsummaryrefslogtreecommitdiff
path: root/src/manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager.py')
-rwxr-xr-xsrc/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manager.py b/src/manager.py
index cd656226..155e7c3d 100755
--- a/src/manager.py
+++ b/src/manager.py
@@ -33,7 +33,7 @@ def db_create():
'nickname': 'admin',
'pwdhash': generate_password_hash(
os.environ.get("ADMIN_PASSWORD", "password")),
- 'email': os.environ.get("ADMIN_EMAIL", "root@jarr.localhost")}
+ 'email': os.environ.get("ADMIN_EMAIL", "root@newspipe.localhost")}
with application.app_context():
db.create_all()
UserController(ignore_context=True).create(**admin)
bgstack15