Relay your discord server to irc via avian carrier!
Aller au fichier
Rachel Fae Fox 425fbc78f7 Upload files to 'priv' 2022-11-10 23:45:57 -05:00
config you didn't see anything 2022-11-10 19:41:03 -05:00
docs improved project layout and began documentation 2022-11-10 13:42:45 -05:00
lib you didn't see anything 2022-11-10 19:41:03 -05:00
priv Upload files to 'priv' 2022-11-10 23:45:57 -05:00
test you didn't see anything 2022-11-10 19:41:03 -05:00
.formatter.exs initial commit 2020-07-16 23:11:18 -04:00
.gitignore ignore emacs stuff 2022-11-10 13:56:14 -05:00
LICENSE.md add license 2022-11-10 15:06:30 -05:00
README.md you didn't see anything 2022-11-10 19:41:03 -05:00
mix.exs you didn't see anything 2022-11-10 19:41:03 -05:00
mix.lock add credo and other tools for later. 2022-11-07 09:22:44 -05:00

README.md

Homing Pigeon

Relay your discord server to irc via avian carrier.

Installation

you need to configure this with a dev.exs / prod.exs like such

import Config

config :homingpigeon,
  channels: [
    %{ircnetwork: "net1",
      ircchannel: "#mychannel",
      discordid: 123456789234}
  ],
  networks: [
    %{
      network: "net1",
      server: "irc.example.net",
      pass: "",
      port: 6697,
      ssl?: true,
      nick: "discordirc",
      user: "discord",
      name: "Relay bot for my discord"
    }
  ]

config :nostrum,
  token: "YOUR TOKEN HERE",

Running

$ MIX_ENV="prod" mix run --no-halt

if you're going to be hacking on it, or want the ability to update without restarting, I recommend you run it in iex.

$ iex -S mix

to update your bot while running in iex just type recompile.