Skip to content
Snippets Groups Projects
Verified Commit 423fc917 authored by TheJoeCoder's avatar TheJoeCoder
Browse files

[frontend] Add config file

parent cd8e0f11
No related branches found
No related tags found
No related merge requests found
server_url = "http://localhost:5000"
\ No newline at end of file
...@@ -5,6 +5,13 @@ from tkinter import * ...@@ -5,6 +5,13 @@ from tkinter import *
## Server URL ## Server URL
server_url = "http://localhost:5000" server_url = "http://localhost:5000"
## Additional Config file import
try:
import config
server_url = config.server_url
except:
pass
## Init ## Init
root = Tk() root = Tk()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment