Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RealistikGDPS/Ognisko
The complete GD-facing backend for RealistikGDPS, written in Python.
https://github.com/RealistikGDPS/Ognisko
asyncio gdps geometrydash geometrydashprivateserver
Last synced: 2 months ago
JSON representation
The complete GD-facing backend for RealistikGDPS, written in Python.
- Host: GitHub
- URL: https://github.com/RealistikGDPS/Ognisko
- Owner: RealistikGDPS
- License: agpl-3.0
- Created: 2022-09-09T12:10:45.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-13T14:57:16.000Z (5 months ago)
- Last Synced: 2024-08-13T17:21:28.908Z (5 months ago)
- Topics: asyncio, gdps, geometrydash, geometrydashprivateserver
- Language: Python
- Homepage:
- Size: 769 KB
- Stars: 14
- Watchers: 3
- Forks: 4
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-geometry-dash - RealistikGDPS - Python-based GDPS backend (Other)
README
# RealistikGDPS
The Python-based backend for RealistikGDPS, made as an expandable solution for a GDPS of any size.For support and a public running instance, please visit [our Discord!](https://discord.gg/uNTPGPn3D5)
## What is this?
This is a modern Python implementation of the Geometry Dash server protocol meant to power my Geometry Dash Private server.
It is written in asynchronous, modern Python and is meant as a replacement for our current [PHP based infrastructure](https://github.com/Cvolton/GMDprivateServer).## Interesting Features
- Fully Dockerised, allowing for easy setup
- MeiliSearch, allowing for typo tolerance
- S3 support, allowing for flexible storage solutions
- Proper ratelimiting
- Logz.io logging support
- Flexible command framework## How to set up?
- Ensure Docker and Make are installed on your system.
- Create a copy of the `.env.example` file named `.env` and adjust it to your liking.
- Run `make build` to build the RealistikGDPS image.
- Run `make run` to run everything.TODO: Non-docker setup instructions.
## Configuration
As previously mentioned, RealistikGDPS currently supports two ways of configuring the server.
In both cases the configuration is done through the `.env` file.- Create a copy of `.env.example` named `.env`
This creates a copy of the default config with all the field names ready for editing.- Edit the `.env` file to your liking
Due to the all-in-one nature of Docker, the defaults are unlikely to require any changing with the exception
`SRV_NAME`, representing the name of your GDPS.## Upgrading an existing server
Assuming your server is based off [Cvolton's server implementation](https://github.com/Cvolton/GMDprivateServer), there exists a migration
utility for this built right into the codebase.This is done by importing your old database into a database named `old_gdps` and running `make converter` (assuming you are using Docker).
This will fill **all empty** tables with data from the old table.