Add DNS/Flask servers, logging, and stunnel config

Introduces a DNS server (dnsserver.py) that redirects Nintendo domains, a Flask server (server.py) for serving Gen4/Gen5 Pokémon event files and logging unknown requests, and supporting batch scripts for starting/stopping services. Adds stunnel configuration and certificates for SSL proxying, as well as initial requirements and log handling. Removes obsolete server.log and restructures event file serving and logging for better maintainability.
This commit is contained in:
2025-09-20 01:56:32 -04:00
parent bc1edc6fdf
commit 87d4b4ba78
30 changed files with 270 additions and 42 deletions
+29
View File
@@ -0,0 +1,29 @@
@echo off
setlocal
REM Paths
set BASE_DIR=C:\Users\hocke\Documents\GitHub\Pokemon-DNS-DS-Server
set STUNNEL_EXE="C:\Program Files (x86)\stunnel\bin\stunnel.exe"
set STUNNEL_CONF=%BASE_DIR%\stunnel\stunnel.conf
REM Start DNS Server
start "DNS Server" cmd /c "cd /d %BASE_DIR% && python dnsserver.py"
REM Start Flask Server
start "Flask Server" cmd /c "cd /d %BASE_DIR% && python server.py"
REM Start stunnel
start "stunnel" %STUNNEL_EXE% %STUNNEL_CONF%
echo.
echo Servers are running. Close this window to stop them all.
echo.
REM Wait until user closes window
pause >nul
REM Kill services
taskkill /IM python.exe /F >nul 2>&1
taskkill /IM stunnel.exe /F >nul 2>&1
echo All services stopped.