You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
After flask version 0.11, it no more uses manage.py. For this reason
every commands inside of manage.py moves to app.py And thus, commands
are a bit changed.
For example, "./manage.py config" changes to "flask config".
Flask-Script extension, which is command line tool, is deprecated.
Instead of it, there is a better python package named "click". So, I
replaced flask_script to click.
Flask-Script에 따르면 Flask 0.11 버전부터 Flask.cli가 내장되어 이쪽 사용을 권장한다고 합니다.
따라서 manage.py의 수정이 필요합니다.
The text was updated successfully, but these errors were encountered: