This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############# init parent django project settings | |
| from os import path | |
| import sys | |
| sys.path.append(path.dirname(path.dirname(path.abspath(__file__)))) | |
| import settings | |
| from django.core.management import setup_environ | |
| setup_environ(settings) | |
| ############### |