Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
/ silvy Public archive

An app for creating, sharing, and collaborating on strats for XIV

Notifications You must be signed in to change notification settings

ribbon-studios/silvy

Folders and files

NameName
Last commit message
Last commit date
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024
Feb 23, 2024

Repository files navigation

⚠️ This repo is still a WIP and things are always subject to change. ⚠️

Docker Hub Version

Coveralls

Silvy

An app for creating, sharing, and collaborating on strats for XIV.

Supports

Supported Databases

  • 🐘 Postgres
  • 🐬 MariaDB (MySQL)
  • Ⓜ️ SQL Server
  • 🐀 SQLite

Getting Started

🐳 Docker

$ 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

πŸ‹ Docker Compose

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>"

Want to Contribute?

Deploys by Netlify