fix: create config file if doesn't exist

This commit is contained in:
starnakin 2023-06-04 13:16:45 +02:00
parent 557d592201
commit c72351a221

View File

@ -1,7 +1,22 @@
import json
f = open('./config/config.json')
try:
f = open('./config/config.json')
data = json.load(f)
except:
data = {
"database": {
"ip": "localhost",
"port": 3306,
"user": "user",
"password": "password"
}
}
json_object = json.dumps(dictionary, indent=4)
with open("config/config.json", "w") as outfile:
outfile.write(json_object)
data = json.load(f)
database = data.get("database");