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 discord-bot \
rainbowcafe/silvy
version: "3"
services:
discord-bot:
image: rainbowcafe/silvy:latest
container_name: discord-bot
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>"