spawn-bbb-droplet/hello_settings.py

15 lines
299 B
Python
Raw Permalink Normal View History

2023-04-03 09:20:10 +00:00
import os, json
# project path
PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
print('PROJECT_PATH: {}'.format(PROJECT_PATH))
# secrets dict
SECRETS_PATH = os.path.join(PROJECT_PATH, 'secret.json')
SECRETS_DICT = json.loads(open(SECRETS_PATH, "r").read())
# temporary settings below