16 lines
400 B
Python
16 lines
400 B
Python
try:
|
|
from tiramisu3 import Storage
|
|
except:
|
|
from tiramisu import Storage
|
|
from os.path import isfile as _isfile
|
|
import os as _os
|
|
_envfile = '/etc/risotto/risotto.conf'
|
|
if _isfile(_envfile):
|
|
with open(_envfile, 'r') as fh_env:
|
|
for line in fh_env.readlines():
|
|
key, value = line.strip().split('=')
|
|
_os.environ[key] = value
|
|
|
|
|
|
STORAGE = Storage(engine='sqlite3')
|