Skip to content

appositum/thonk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thonk

A Discord bot written in Elixir

Build Status Discord Erlang/OTP Elixir Alchemy

# config/config.exs

use Mix.Config

config :porcelain, driver: Porcelain.Driver.Basic
config :thonk,
  token: "your token",
  prefix: "command prefix"

# Necessary to voice functionality
config :alchemy,
  ffmpeg_path: "/path/to/ffmpeg",
  youtube_dl_path: "/path/to/youtube-dl"

mix deps.get && mix run --no-halt
or run it in interactive mode
mix deps.get && iex -S mix