Relay your discord server to irc via avian carrier!
Go to file
Rachel Fae Fox 8b1e19b56d add credo and other tools for later. 2022-11-07 09:22:44 -05:00
lib bring this up to date finally, this should be considered a merge. 2022-11-07 07:08:38 -05:00
test initial commit 2020-07-16 23:11:18 -04:00
.formatter.exs initial commit 2020-07-16 23:11:18 -04:00
.gitignore bring this up to date finally, this should be considered a merge. 2022-11-07 07:08:38 -05:00
README.md bring this up to date finally, this should be considered a merge. 2022-11-07 07:08:38 -05:00
mix.exs add credo and other tools for later. 2022-11-07 09:22:44 -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 config.exs

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,
  # The token of your bot as a string
  token: "666",
  # The number of shards you want to run your bot under, or :auto.
  num_shards: :auto

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/discordirc.