Example #1
0
#!/usr/bin/env python
import sys

import syncomatic
from syncomatic import app
from syncomatic.models import User

if __name__ == '__main__':
    # Reset the database only if we run with --initdb.
    if (len(sys.argv) > 1 and sys.argv[1] == '--initdb'):
        User.initdb()

    app.run(debug=True)
Example #2
0
 def register_user(self):
     """Register a given user."""
     User.add_user(User(self.email.data, self.password.data))