35 lines
893 B
Markdown
35 lines
893 B
Markdown
# 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
|