Sunrise is a private server for osu! written in C#. This repository has both endpoints for game-client and for the website. The server is currently in development and is not yet ready for public use.
Note
Why C#? Well, because owner of this project has allergies to non-typed languages. Sad, I know.
- Login and registration system
- Score submission and leaderboards
- Chat implementation
- Chat Bot (as a replacement for Bancho Bot)
- Multiplayer
- !mp commands (mostly)
- Server website (located at Sunset)
- osu!Direct
- Spectating
- Achievements (Medals)
- Rank snapshots
- Prometheus metrics with Grafana dashboard
- Rate limiter for both internal and external requests
- Redis caching for faster response times
- Docker support
- Database migrations
- Database backups
Important
The list of features is in priority order. The higher the feature is, the more important it is.
- Clone the repository
- Open the project in Visual Studio (or any other IDE)
- To set up development environment run:
docker compose -f docker-compose.dev.yml up -d
- Run the project
- (Optional) If you want to connect to the server locally, please refer to the Local connection βοΈ section.
-
Add a launch argument
-devserver sunrise.local
to your osu! shortcut. -
Open the
hosts
file located inC:\Windows\System32\drivers\etc\hosts
(C:\ is your system drive) with a text editor and add the following line:... (rest of the file) # Sunrise Web Section 127.0.0.1 sunrise.local 127.0.0.1 api.sunrise.local # Sunrise osu! Section 127.0.0.1 osu.sunrise.local 127.0.0.1 a.sunrise.local 127.0.0.1 c.sunrise.local 127.0.0.1 assets.sunrise.local 127.0.0.1 cho.sunrise.local 127.0.0.1 assets.sunrise.local 127.0.0.1 c4.sunrise.local 127.0.0.1 b.sunrise.local
Warning
Don't forget to save the file after editing.
-
Generate a self-signed certificate for the domain
sunrise.local
by running the following commands in the terminal:openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes -keyout sunrise.local.key -out sunrise.local.crt -subj "/CN=sunrise.local" -addext "subjectAltName=DNS:sunrise.local,DNS:*.sunrise.local,IP:10.0.0.1"
-
Convert the certificate to the PKCS12 format (for ASP.Net) by running the following command in the terminal:
openssl pkcs12 -export -out sunrise.local.pfx -inkey sunrise.local.key -in sunrise.local.crt -password pass:password
-
Import the certificate to the Trusted Root Certification Authorities store by running the following command in the terminal:
certutil -addstore -f "ROOT" sunrise.local.crt
-
Run the server and navigate to
https://sunrise.local/swagger/index.html
to check if the server is running.
All endpoints can be checked after running the server locally by navigating
to https://{your-domain}/swagger/index.html
.
In the near future, the server will be hosted on a domain and the API documentation will be available there.
If you want to contribute to the project, feel free to fork the repository and submit a pull request. We are open to any suggestions and improvements.