aboutsummaryrefslogtreecommitdiff
path: root/budget/manage.py
AgeCommit message (Collapse)AuthorFilesLines
2017-06-27Use a hashed password for ADMIN_PASSWORD (#236)0livd1-1/+12
* Use a hashed password for ADMIN_PASSWORD A generate_password_hash manage.py command is provided Fixes #233 * Print a console warning for users using a clear text ADMIN_PASSWORD * Reword ADMIN_PASSWORD doc * Update changelog * Update CHANGELOG.rst - say it out loud - bump to 2.0 (that's the logic of semantic versioning while introducing breaking changes) * Bump to 2.0 (breaking change) * Update hashed password warning message * Mention the generate password hash in the Changelog
2017-03-29Remove ExtDeprecationWarning from manage.pyJocelyn Delalande1-2/+2
Using new-style flask extensions imports. grep tells me there were the only flask.ext.* occurences remaining in ihatemoney code.
2016-05-31Add a manage.py CLI (flask_script)Jocelyn Delande1-0/+16
As it's the Flask-Migrate way to expose its commands (./manage.py db command). In our case, it's specially useful for creating new migrations.