about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-11-08 13:15:53 +0300
committerFrederick Muriuki Muriithi2022-11-08 13:15:53 +0300
commit83c476a6738042e0ce35af07eb515d0a169c54ba (patch)
tree0ea2488a85e1db60b91b96a883b8da887eb429c7
parent5deac1414efe34e29c8cea2976d31c2cc67b10b7 (diff)
downloadgenenetwork3-83c476a6738042e0ce35af07eb515d0a169c54ba.tar.gz
CLI: Provide `apply-migrations` command for flask
* main.py: Provide the `apply-migrations` CLI command to run the migrations
  against the auth database.

  The command can be invoked with:

      $ flask apply-migrations
-rw-r--r--main.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/main.py b/main.py
index a587697..aaa51da 100644
--- a/main.py
+++ b/main.py
@@ -4,6 +4,18 @@ from gn3.app import create_app
 
 app = create_app()
 
+##### BEGIN: CLI Commands #####
+
+@app.cli.command()
+def apply_migrations():
+    from yoyo import get_backend, read_migrations
+    from gn3.migrations import apply_migrations
+    apply_migrations(
+        get_backend(f'sqlite:///{app.config["AUTH_DB"]}'),
+        read_migrations(app.config["AUTH_MIGRATIONS"]))
+
+##### END: CLI Commands #####
+
 if __name__ == '__main__':
     print("Starting app...")
     app.run()