An app for creating, sharing, and collaborating on strats for XIV.
- 💻 Self-hosting!
- 💿 Almost any database you'd ever want!
- ✏️ Creating Strats
- 🎉 Creating Teams
- 🐘 Postgres
- 🐬 MariaDB (MySQL)
Ⓜ️ SQL Server- 🐤 SQLite
$ docker run -d \
--restart=always \
-e NEXTAUTH_URL="<your-next-auth-url>" \
-e NEXTAUTH_SECRET="<your-next-auth-secret>" \
-e DISCORD_CLIENT_ID="<your-discord-client-id>" \
-e DISCORD_SECRET="<your-discord-token>" \
-e DATABASE_URL="<your-database-url>" \
--name silvy \
ghcr.io/ribbon-studios/silvy:latest
version: "3"
services:
silvy:
image: ghcr.io/ribbon-studios/silvy:latest
container_name: silvy
tty: true
stdin_open: true
restart: unless-stopped
environment:
NEXTAUTH_URL: "<your-next-auth-url>"
NEXTAUTH_SECRET: "<your-next-auth-secret>"
DISCORD_CLIENT_ID: "<your-discord-client-id>"
DISCORD_SECRET: "<your-discord-token>"
DATABASE_URL: "<your-database-url>"