This repository was archived by the owner on Mar 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrun.py
More file actions
59 lines (45 loc) · 1.66 KB
/
run.py
File metadata and controls
59 lines (45 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python3
import click
import os
from conekt import create_app, db
from conekt.models.users import User
app = create_app("config")
@app.cli.command()
def initdb():
"""Initialize the database."""
click.echo("Init the db")
SQLALCHEMY_DATABASE_URI = app.config["SQLALCHEMY_DATABASE_URI"]
if SQLALCHEMY_DATABASE_URI.startswith("sqlite:///"):
path = os.path.dirname(
os.path.realpath(SQLALCHEMY_DATABASE_URI.replace("sqlite:///", ""))
)
if not os.path.exists(path):
os.makedirs(path)
db.create_all(app=app)
if len(User.query.all()) == 0:
ADMIN_PASSWORD = app.config["ADMIN_PASSWORD"]
ADMIN_EMAIL = app.config["ADMIN_EMAIL"]
db.session.add(User("admin", ADMIN_PASSWORD, ADMIN_EMAIL, is_admin=True))
db.session.commit()
print(
"\nAn admin account has been created. Username='admin' and password='"
+ ADMIN_PASSWORD
+ "'"
)
print("IMPORTANT: Change the password for this account")
@app.cli.command()
@click.argument("username", type=str)
@click.argument("password", type=str)
def add_user(username, password):
if len(User.query.filter(User.username == username).all()) == 0:
db.session.add(User(username, password, "", is_admin=False))
db.session.commit()
@app.cli.command()
@click.argument("username", type=str)
@click.argument("password", type=str)
def add_admin(username, password):
if len(User.query.filter(User.username == username).all()) == 0:
db.session.add(User(username, password, "", is_admin=True))
db.session.commit()
if __name__ == "__main__":
app.run()