# Google recaptcha v2 keys
RECAPTCHA_PUBLIC_KEY=
RECAPTCHA_PRIVATE_KEY=
# Strong random string of characters
APP_SECRET_KEY=
# From my.telegram.org
TELE_API_HASH=
TELE_API_ID=
# Get DSN by signing up and creating project at https://sentry.io
SENTRY_DSN=
# For SMTP email dissemination (get app password from gmail account)
GMAIL_USERNAME=
GMAIL_APP_PASSWORD=
# looks like that. Check out flask_sqlalchemy on how to create a db from this.
class User(db.Model, UserMixin):
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(20), nullable=False, unique=True)
password = db.Column(db.String(80), nullable=False)
# at root of project
flask run --debug
# at root of project
npx tailwindcss -i ./static/src/input.css -o ./static/dist/css/output.css --watch