Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Latest commit

 

History

History
36 lines (30 loc) · 824 Bytes

README.md

File metadata and controls

36 lines (30 loc) · 824 Bytes

Vivy

My mission is to make everyone happy by singing.

Let me sing?

In a simple docker compose configuration:

version: '3'
services:
  bot:
    image: 'gavenda/vivy:latest'
    environment:
      TOKEN: <your bot token>
      SPOTIFY_CLIENT_ID: <optional spotify client id>
      SPOTIFY_CLIENT_SECRET: <optional spotify client secret>
      MUSIC_DB_USER: vivy
      MUSIC_DB_PASS: vivy
      MUSIC_DB_URL: jdbc:postgresql://database:5432/vivy
      LINK_NODES: ws://lava.link
      LINK_PASSWORDS: vivy
  database:
    image: 'postgres:latest'
    restart: always
    ports:
      - '5432:5432'
    environment:
      POSTGRES_USER: vivy
      POSTGRES_PASSWORD: vivy
      POSTGRES_DB: vivy

Running as a service

An example systemd unit file is included in the repository.