From 233e344a8de7cc2c28dd035463c88b69c852af5e Mon Sep 17 00:00:00 2001 From: Pratyush Desai Date: Sat, 7 Feb 2026 15:10:34 +0530 Subject: [PATCH] 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 ``` -------------