mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-03 03:31:50 +02:00
* Use absolute imports and rename package to ihatemoney * Add a ihatemoney command * Factorize application creation logic * Refactor the tests * Update the wsgi.py module with the new create_app() function * Fix some styling thanks to Flake8. * Automate Flake8 check in the CI.
32 lines
766 B
Python
Executable file
32 lines
766 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from getpass import getpass
|
|
from flask_script import Manager, Command
|
|
from flask_migrate import Migrate, MigrateCommand
|
|
from werkzeug.security import generate_password_hash
|
|
|
|
from ihatemoney.run import create_app
|
|
from ihatemoney.models import db
|
|
|
|
|
|
class GeneratePasswordHash(Command):
|
|
|
|
"""Get password from user and hash it without printing it in clear text."""
|
|
|
|
def run(self):
|
|
password = getpass(prompt='Password: ')
|
|
print(generate_password_hash(password))
|
|
|
|
|
|
def main():
|
|
app = create_app()
|
|
Migrate(app, db)
|
|
|
|
manager = Manager(app)
|
|
manager.add_command('db', MigrateCommand)
|
|
manager.add_command('generate_password_hash', GeneratePasswordHash)
|
|
manager.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|