Relay your discord server to irc via avian carrier!
 
Go to file
Rachel Fae Fox (foxiepaws) f8bd3432e0 initial commit 2020-07-16 23:11:18 -04:00
lib initial commit 2020-07-16 23:11:18 -04: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 initial commit 2020-07-16 23:11:18 -04:00
README.md initial commit 2020-07-16 23:11:18 -04:00
mix.exs initial commit 2020-07-16 23:11:18 -04:00
mix.lock initial commit 2020-07-16 23:11:18 -04: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.