Compare commits

..

3 Commits

7 changed files with 14 additions and 15 deletions

View File

@ -1,2 +1,7 @@
irc_config.yaml
/ircie
.git/
ircie/
config/
.gitignore
docker-compose.yml
Dockerfile
IDEAS

4
.gitignore vendored
View File

@ -1,5 +1,5 @@
/target
Cargo.lock
irc_config.yaml
/save
config/irc_config.yaml
config/hall_of_fame.yaml
/ircie

View File

@ -1,6 +1,5 @@
FROM rust:bookworm
WORKDIR /app
RUN mkdir save
RUN git clone https://git.supernets.org/sad/ircie.git
COPY . .
RUN cargo build --release

5
IDEAS
View File

@ -1,8 +1,3 @@
disallow ,challenging self
(When challenging yourself, this error occurs:
hardfight-hardfight-1 | thread 'tokio-runtime-worker' panicked at 'called `Option::unwrap()` on a `None` value', src/main.rs:386:53
hardfight-hardfight-1 | note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
)
fix ,f
make this fuckin lib async so I can sleep in between shit
,titlefight where looser gets 5k'd

View File

@ -1,6 +1,6 @@
services:
hardfight:
build: .
image: git.supernets.org/hgw/hardfight:latest
#build: .
volumes:
- "$PWD/irc_config.yaml:/app/irc_config.yaml"
- "$PWD/save:/app/save"
- "$PWD/config/:/app/config/"

View File

@ -21,7 +21,7 @@ use rand::{
};
use serde::{Deserialize, Serialize};
const SAVE_LOC: &'static str = "save/hall_of_fame.yaml";
const SAVE_LOC: &'static str = "config/hall_of_fame.yaml";
const PRESENTATIONS: &'static [&'static str] = &[
"A faggot coming straight from the underground!",
@ -234,7 +234,7 @@ impl Fight {
async fn main() -> std::io::Result<()> {
env_logger::init();
let mut irc = Irc::from_config("irc_config.yaml").await?;
let mut irc = Irc::from_config("config/irc_config.yaml").await?;
irc.add_resource(Fight::default())
.await