From 8958eacbffc3020b1468a88c99342a6245935d4b Mon Sep 17 00:00:00 2001 From: th3r00t Date: Wed, 5 Feb 2020 13:12:16 -0500 Subject: [PATCH] ui gets v# from config, collection backend setup --- makeCollections | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 makeCollections diff --git a/makeCollections b/makeCollections new file mode 100755 index 0000000..4333055 --- /dev/null +++ b/makeCollections @@ -0,0 +1,13 @@ +#!/usr/bin/python + +import pathlib +import sys + +from src.backend.lib.storage import Storage +from src.backend.pyShelf_MakeCollections import MakeCollections + +PRG_PATH = pathlib.Path.cwd() +LIB_PATH = pathlib.Path.joinpath(PRG_PATH, "src", "backend", "lib") +sys.path.insert(0, PRG_PATH) +print("\n") +MakeCollections(PRG_PATH)