"flask db init" causes error #416
Unanswered
gurupetach
asked this question in
Q&A
Replies: 1 comment
-
Here is something I don't understand. The |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
"flask db init "causes this error: No handlers could be found for logger "flask_migrate".
What shoid I do?
My alembic ini file is as below
A generic, single database configuration.
[alembic]
template used to generate migration files
file_template = %%(rev)s_%%(slug)s
set to 'true' to run the environment during
the 'revision' command, regardless of autogenerate
revision_environment = false
Logging configuration
[loggers]
keys = root,sqlalchemy,alembic,flask_migrate
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
qualname =
[logger_sqlalchemy]
level = WARN
handlers =
qualname = sqlalchemy.engine
[logger_alembic]
level = INFO
handlers =
qualname = alembic
[logger_flask_migrate]
level = INFO
handlers =
qualname = flask_migrate
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S
Beta Was this translation helpful? Give feedback.
All reactions