Optional json file to store port number.

This commit is contained in:
zortazert 2022-03-30 23:05:05 -05:00
parent fe98c11aaa
commit cc28312487
3 changed files with 13 additions and 8 deletions

View file

@ -6,14 +6,6 @@
# web-masters and a like, so we are counting on
# your ability to set it up and running.
CSS = "https://zortazert.codeberg.page/style/styles.css"
PORT = input("Port: ")
try:
PORT = int(PORT)
except:
print("Port should be a number")
exit()
# Server side
from http.server import BaseHTTPRequestHandler, HTTPServer
from subprocess import *
@ -23,6 +15,19 @@ import os
from modules import search
from modules import render
CSS = "https://zortazert.codeberg.page/style/styles.css"
try:
with open("port.json","r") as f:
json_stuff = json.load(f)
PORT = json_stuff["port"]
except:
PORT = input("Port: ")
try:
PORT = int(PORT)
except:
print("Port should be a number")
exit()
# Who fucking made this http.server so I need to use classes?
# I fucking hate who ever thought that it was a good idea...