You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
7 months ago | |
---|---|---|
config | 7 months ago | |
docs | 7 months ago | |
lib | 7 months ago | |
priv | 7 months ago | |
test | 7 months ago | |
.formatter.exs | 3 years ago | |
.gitignore | 7 months ago | |
LICENSE.md | 7 months ago | |
README.md | 7 months ago | |
mix.exs | 7 months ago | |
mix.lock | 7 months ago |
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
.