Upload files to "/"

This commit is contained in:
2026-03-02 09:49:12 -05:00
parent 366e218e26
commit bc9bc73841
2 changed files with 31 additions and 0 deletions

15
START_CLIENT.bat Normal file
View File

@@ -0,0 +1,15 @@
@echo off
title Chat Client
color 0A
echo ==========================================
echo STARTING CHAT CLIENT...
echo ==========================================
echo.
python client.py
echo.
echo ==========================================
echo CLIENT DISCONNECTED
echo ==========================================
pause

16
START_SERVER.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
title Chat Server
color 0B
echo ==========================================
echo STARTING CHAT SERVER...
echo ==========================================
echo.
:: Running directly using system python
python server.py
echo.
echo ==========================================
echo SERVER HAS STOPPED
echo ==========================================
pause