bozo-backend/config.py

25 lines
516 B
Python
Raw Normal View History

import json
try:
f = open('./config/config.json')
data = json.load(f)
except:
data = {
2023-06-09 09:22:50 -04:00
"secret": "SECRET_KEY",
"database": {
"ip": "localhost",
"port": 3306,
"user": "user",
"password": "password"
}
}
2023-06-04 07:18:10 -04:00
json_object = json.dumps(data, indent=4)
with open("config/config.json", "w") as outfile:
outfile.write(json_object)
database = data.get("database");
2023-06-09 09:22:50 -04:00
secret = data.get("secret")