add warning about serve not being suitable for production

This commit is contained in:
Emi Vasilek 2023-11-28 15:30:42 +00:00
parent 67bb8c2266
commit 816e65a00c

View file

@ -44,6 +44,7 @@ def main() -> None:
(args.address, args.port), http.server.SimpleHTTPRequestHandler (args.address, args.port), http.server.SimpleHTTPRequestHandler
) )
print(f"serving at http://{args.address}:{args.port}") print(f"serving at http://{args.address}:{args.port}")
print("THIS WEB SERVER IS ONLY MEANT FOR LOCAL TESTING, IT IS NOT SUITABLE FOR PRODUCTION")
try: try:
httpd.serve_forever() httpd.serve_forever()
except KeyboardInterrupt: except KeyboardInterrupt: