Compare commits
No commits in common. "8c2dd1cc3b712ae46ef7c46e184beb4ea45aecec" and "14b171b1c3beb8c92e83a778ba6e2fefaa0773db" have entirely different histories.
8c2dd1cc3b
...
14b171b1c3
@ -1,2 +0,0 @@
|
|||||||
irc_config.yaml
|
|
||||||
/ircie
|
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,5 +1,4 @@
|
|||||||
/target
|
/target
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
irc_config.yaml
|
irc_config.yaml
|
||||||
/save
|
hall_of_fame.yaml
|
||||||
/ircie
|
|
@ -6,7 +6,7 @@ edition = "2021"
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ircie = { path = "./ircie" }
|
ircie = { path = "../ircie" }
|
||||||
tokio = { version = "1.28.2", features = ["full"] }
|
tokio = { version = "1.28.2", features = ["full"] }
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
FROM rust:bookworm
|
|
||||||
WORKDIR /app
|
|
||||||
RUN mkdir save
|
|
||||||
RUN git clone https://github.com/ayywrk/ircie
|
|
||||||
COPY . .
|
|
||||||
RUN cargo build --release
|
|
||||||
CMD ["./target/release/hardfight"]
|
|
@ -1,6 +0,0 @@
|
|||||||
services:
|
|
||||||
hardfight:
|
|
||||||
build: .
|
|
||||||
volumes:
|
|
||||||
- "$PWD/irc_config.yaml:/app/irc_config.yaml"
|
|
||||||
- "$PWD/save:/app/save"
|
|
@ -1,21 +0,0 @@
|
|||||||
host: irc.supernets.org
|
|
||||||
port: 6697
|
|
||||||
ssl: true
|
|
||||||
|
|
||||||
channels:
|
|
||||||
- "#5000"
|
|
||||||
|
|
||||||
nick: hardfight
|
|
||||||
user: hardfight
|
|
||||||
real: hardfight
|
|
||||||
|
|
||||||
nickserv_pass: REDACTED
|
|
||||||
nickserv_email: REDACTED
|
|
||||||
|
|
||||||
cmdkey: ","
|
|
||||||
|
|
||||||
flood_interval: 1
|
|
||||||
|
|
||||||
owner: "*!*@cia.gov"
|
|
||||||
|
|
||||||
admins: []
|
|
@ -21,7 +21,7 @@ use rand::{
|
|||||||
};
|
};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
const SAVE_LOC: &'static str = "save/hall_of_fame.yaml";
|
const SAVE_LOC: &'static str = "hall_of_fame.yaml";
|
||||||
|
|
||||||
const PRESENTATIONS: &'static [&'static str] = &[
|
const PRESENTATIONS: &'static [&'static str] = &[
|
||||||
"A faggot coming straight from the underground!",
|
"A faggot coming straight from the underground!",
|
||||||
|
Loading…
Reference in New Issue
Block a user