Linked Djangos settings to pyShelfs config

This commit is contained in:
Mike Young
2019-12-22 13:35:58 -05:00
parent ee43b85cb8
commit 083f82fde1
5 changed files with 36 additions and 5 deletions

8
install.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/python
import pathlib
import sys
PRG_PATH = pathlib.Path.cwd()
LIB_PATH = pathlib.Path.joinpath(PRG_PATH, "src", "backend", "lib")
sys.path.insert(0, PRG_PATH)