Los archivos se guardan en la base de datos y se agregaron categorias

Si, creo que eso nada mas
This commit is contained in:
Daniel Cortes
2019-03-09 02:44:17 -03:00
parent fcf30823f7
commit cd2087c567
12 changed files with 340 additions and 41 deletions

View File

@@ -29,6 +29,9 @@ def create_app():
from . import auth
app.register_blueprint(auth.bp)
from . import categories
app.register_blueprint(categories.bp)
from . import about
app.register_blueprint(about.bp)
app.add_url_rule('/about', endpoint='about')
@@ -37,4 +40,5 @@ def create_app():
app.register_blueprint(files.bp)
app.add_url_rule('/', endpoint='index')
return app