ui gets v# from config, collection backend setup

This commit is contained in:
th3r00t
2020-02-05 13:12:16 -05:00
parent 15e4960e33
commit 8958eacbff

13
makeCollections vendored Executable file
View File

@@ -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)