18 files changed, 2 insertions(+), 5 deletions(-)
M setup.py
M tilde/__init__.py
R blueprints/auth/__init__.py => tilde/blueprints/auth/__init__.py
R blueprints/auth/forms.py => tilde/blueprints/auth/forms.py
R blueprints/auth/models.py => tilde/blueprints/auth/models.py
R blueprints/auth/templates/account.html => tilde/blueprints/auth/templates/account.html
R blueprints/auth/templates/login.html => tilde/blueprints/auth/templates/login.html
R blueprints/auth/templates/register.html => tilde/blueprints/auth/templates/register.html
R blueprints/auth/views.py => tilde/blueprints/auth/views.py
R blueprints/flatpages/__init__.py => tilde/blueprints/flatpages/__init__.py
R blueprints/flatpages/templates/chat.html => tilde/blueprints/flatpages/templates/chat.html
R blueprints/flatpages/templates/coc.html => tilde/blueprints/flatpages/templates/coc.html
R blueprints/flatpages/templates/contact.html => tilde/blueprints/flatpages/templates/contact.html
R blueprints/flatpages/templates/help.html => tilde/blueprints/flatpages/templates/help.html
R blueprints/flatpages/templates/index.html => tilde/blueprints/flatpages/templates/index.html
R blueprints/flatpages/templates/privacy.html => tilde/blueprints/flatpages/templates/privacy.html
R blueprints/flatpages/templates/talk.html => tilde/blueprints/flatpages/templates/talk.html
R blueprints/flatpages/views.py => tilde/blueprints/flatpages/views.py
M setup.py => setup.py +0 -3
@@ 17,9 17,6 @@ setup(
"tilde": [
"config.defaults",
],
- "blueprints": [
- "*",
- ],
},
install_requires=[
"flask",
M tilde/__init__.py => tilde/__init__.py +2 -2
@@ 27,11 27,11 @@ if not app.config["SECRET_KEY"]:
app.config["db"] = SQLAlchemy(app)
with app.app_context():
- from blueprints.flatpages.views import flatpages
+ from .blueprints.flatpages.views import flatpages
app.register_blueprint(flatpages)
- from blueprints.auth.views import auth
+ from .blueprints.auth.views import auth
app.register_blueprint(auth, subdomain="auth")
R blueprints/auth/__init__.py => tilde/blueprints/auth/__init__.py +0 -0
R blueprints/auth/forms.py => tilde/blueprints/auth/forms.py +0 -0
R blueprints/auth/models.py => tilde/blueprints/auth/models.py +0 -0
R blueprints/auth/templates/account.html => tilde/blueprints/auth/templates/account.html +0 -0
R blueprints/auth/templates/login.html => tilde/blueprints/auth/templates/login.html +0 -0
R blueprints/auth/templates/register.html => tilde/blueprints/auth/templates/register.html +0 -0
R blueprints/auth/views.py => tilde/blueprints/auth/views.py +0 -0
R blueprints/flatpages/__init__.py => tilde/blueprints/flatpages/__init__.py +0 -0
R blueprints/flatpages/templates/chat.html => tilde/blueprints/flatpages/templates/chat.html +0 -0
R blueprints/flatpages/templates/coc.html => tilde/blueprints/flatpages/templates/coc.html +0 -0
R blueprints/flatpages/templates/contact.html => tilde/blueprints/flatpages/templates/contact.html +0 -0
R blueprints/flatpages/templates/help.html => tilde/blueprints/flatpages/templates/help.html +0 -0
R blueprints/flatpages/templates/index.html => tilde/blueprints/flatpages/templates/index.html +0 -0
R blueprints/flatpages/templates/privacy.html => tilde/blueprints/flatpages/templates/privacy.html +0 -0
R blueprints/flatpages/templates/talk.html => tilde/blueprints/flatpages/templates/talk.html +0 -0
R blueprints/flatpages/views.py => tilde/blueprints/flatpages/views.py +0 -0