From bfbdfa82a0f232e3e389f0809a9f828275a29c9f Mon Sep 17 00:00:00 2001 From: Xander Vertegaal Date: Mon, 9 Dec 2024 15:13:46 +0100 Subject: [PATCH] Undo irrelevant commenting out --- {{cookiecutter.slug}}/bootstrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.slug}}/bootstrap.py b/{{cookiecutter.slug}}/bootstrap.py index f2ab2d4..fb716d6 100644 --- a/{{cookiecutter.slug}}/bootstrap.py +++ b/{{cookiecutter.slug}}/bootstrap.py @@ -80,7 +80,7 @@ def main(argv): frontpack = install_frontend_packages() db, create_db = prepare_db() migrate = superuser = False - # db, grant_db = access_db(db) + db, grant_db = access_db(db) if db and backpack: migrate = run_migrations() if migrate: @@ -98,7 +98,7 @@ def main(argv): if not (pip_tools and backpack and frontpack and funcpack): print(install_all_packages) if not db: print(create_db) - # print(grant_db) + print(grant_db) if not migrate: print(run_migrations) if not superuser: print(create_superuser) if not main_branch: print(track_main)