Relay your discord server to irc via avian carrier!
Go to file
Rachel Fae Fox 65c7c0a00c ignore emacs stuff 2022-11-10 13:56:14 -05:00
config improved project layout and began documentation 2022-11-10 13:42:45 -05:00
docs improved project layout and began documentation 2022-11-10 13:42:45 -05:00
lib improved project layout and began documentation 2022-11-10 13:42:45 -05:00
priv improved project layout and began documentation 2022-11-10 13:42:45 -05:00
test mix format 2022-11-10 11:08:33 -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
README.md improved project layout and began documentation 2022-11-10 13:42:45 -05:00
mix.exs improved project layout and began documentation 2022-11-10 13:42:45 -05:00
mix.lock add credo and other tools for later. 2022-11-07 09:22:44 -05:00

README.md

Discordirc

Installation

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

import Config

config :discordirc,
  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

This is still in heavy development so i haven't handled running it as a release or anything special like that you can still run it with iex.

$ iex -S mix

This does have advantages, for example, if you need to upgrade your bot you can just type recompile and update it without restarting.