From 5a73ab27cc665342326f0be6c072cf9a40ec8c9e Mon Sep 17 00:00:00 2001 From: Pratyush Desai Date: Sat, 7 Feb 2026 15:09:16 +0530 Subject: [PATCH 1/2] add missing python-a2s dep missing in requirements.txt Signed-off-by: Pratyush Desai --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 1b6c8a0..45ad431 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,7 @@ Django==5.1.5 idna==3.10 pillow==11.2.1 podman==5.2.0 +python-a2s==1.4.1 requests==2.32.3 sqlparse==0.5.3 urllib3==2.3.0 -- 2.35.3 From 233e344a8de7cc2c28dd035463c88b69c852af5e Mon Sep 17 00:00:00 2001 From: Pratyush Desai Date: Sat, 7 Feb 2026 15:10:34 +0530 Subject: [PATCH 2/2] codeblock whitespace trim Signed-off-by: Pratyush Desai --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index abaa049..4c2350c 100644 --- a/README.md +++ b/README.md @@ -21,19 +21,19 @@ Python 3.10 or above 1. Clone the repository: ```bash - git clone https://git.com.de/GibCasa/GameServerSupervisor +git clone https://git.com.de/GibCasa/GameServerSupervisor ``` 2. Create a virtual environment in Python: ```bash - python -m venv venv +python -m venv venv ``` 3. Activate the virtual environment: ```bash - source venv/bin/activate +source venv/bin/activate ``` 4. Install dependencies: ```bash - pip install -r requirements.txt +pip install -r requirements.txt ``` 5. Run tests: ```bash @@ -41,15 +41,15 @@ Python 3.10 or above ``` 6. Run migrations: ```bash - ./manage.py migrate +./manage.py migrate ``` 7. Create admin user: ```bash - ./manage.py createsuperuser +./manage.py createsuperuser ``` 8. Run server: ```bash - ./manage.py runserver +./manage.py runserver ``` ## Installation using Podman @@ -61,31 +61,31 @@ Podman 1. Clone the repository: ```bash - git clone https://git.com.de/GibCasa/GameServerSupervisor +git clone https://git.com.de/GibCasa/GameServerSupervisor ``` 2. Build the image: ```bash - podman build . -t supervisor-image +podman build . -t supervisor-image ``` 3. Run a container in an interactive shell: ```bash - podman run -it --network=host localhost/supervisor-image sh +podman run -it --network=host localhost/supervisor-image sh ``` 4. Run tests: ```bash - ./manage.py test +./manage.py test ``` 5. Run migrations: ```bash - ./manage.py migrate +./manage.py migrate ``` 6. Create admin user: ```bash - ./manage.py createsuperuser +./manage.py createsuperuser ``` 7. Run server: ```bash - ./manage.py runserver +./manage.py runserver ``` ------------- -- 2.35.3