Initial commit: standalone Sova jam server setup

This commit is contained in:
Debian
2026-03-14 13:31:26 +00:00
commit 5e7eae22e9
5 changed files with 100 additions and 0 deletions

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
# Sova Jam Server
A standalone Docker setup for [Sova](https://github.com/sova-org/Sova), a live coding jam server that lets multiple performers collaborate in real-time over a shared session.
## Prerequisites
- Docker
- Docker Compose
## Quick start
```bash
cp .env.example .env
# Edit .env and set a strong password
docker compose up -d
```
The server will be available on port **8080**.
## Connecting
Point your Sova-compatible client to `<your-host>:8080` and enter the password you configured in `.env`.
## Configuration
| Variable | Description | Default |
|----------|-------------|---------|
| `SOVA_PASSWORD` | Password required to join the jam session | `changeme` |
The server listens on `0.0.0.0:8080` inside the container. To change the exposed port, edit the `ports` mapping in `docker-compose.yml`.
## Upstream
Sova is developed at https://github.com/sova-org/Sova