diff --git a/.gitignore b/.gitignore index 70a5698..4b1caa0 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ session_data.json session_cookie.json bank.db log.txt +bank.ini +app.ini # Byte-compiled / optimized / DLL files __pycache__/ diff --git a/application/template_app.ini b/application/template_app.ini new file mode 100644 index 0000000..10ab6df --- /dev/null +++ b/application/template_app.ini @@ -0,0 +1,11 @@ +[server] +url = http://0.0.0.0:81 + +[preferences] +dark_theme = dark +theme = dark-blue + +[client] +default_id = +default_password = + diff --git a/server/template_bank.ini b/server/template_bank.ini new file mode 100644 index 0000000..67118f0 --- /dev/null +++ b/server/template_bank.ini @@ -0,0 +1,23 @@ +[database] +name=bank.db + +[api_file] +name=api.yml + +[server] +debug=False +scheduler=True + +[api] +url=http://0.0.0.0:81/ + +[sessions] +secret_key= + +[smtp] +host= +port= +username= +password= +sender_name=Luxbank +sender_email= \ No newline at end of file