From 9f82e689a1d3bf6cc82894f50561b4fc46df2b11 Mon Sep 17 00:00:00 2001 From: calm-steam Date: Sun, 16 Feb 2025 15:50:11 +0530 Subject: [PATCH] modify readme --- README.md | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 297f0bc..3b1c593 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # GibCasa GameServerSupervisor +## Table of Contents +- [Prerequisites](#prerequisites) +- [Installation](#installation) +- [Contributing](#contributing) +- [License](#license) + ## Prerequisites Python 3.10 or above @@ -22,18 +28,33 @@ Python 3.10 or above ```bash pip install -r requirements.txt ``` +5. Run unit tests: +```bash + ./manage.py test +``` 5. Run migrations: ```bash - python manage.py migrate + ./manage.py migrate ``` 6. Create admin user: ```bash - python manage.py createsuperuser + ./manage.py createsuperuser ``` 7. Run server: ```bash - python manage.py runserver + ./manage.py runserver ``` * visit http://localhost:8000 for /public and http://localhost:8000/admin/ to login via the superuser credentials +## Contributing + +1. Fork the repository. +2. Create a new branch: `git checkout -b feature-name`. +3. Make your changes. +4. Push your branch: `git push origin feature-name`. +5. Create a pull request. + +## License + +This project is licensed under the [AGPL](https://www.gnu.org/licenses/agpl-3.0.html).