Simple IRC bot written in Rust as a learning exercise.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
lalanza808 c07f9260ee update secrets passing and fix some vars 4 years ago
src update secrets passing and fix some vars 4 years ago
torsocks setup simple tor bridge, document in readme 4 years ago
util add db init and string manipulations 4 years ago
.gitignore setting up postgres backend w. async 4 years ago
Cargo.lock remove async and fix queries - inserts working 4 years ago
Cargo.toml remove async and fix queries - inserts working 4 years ago
README.md setup simple tor bridge, document in readme 4 years ago
config.example.toml update secrets passing and fix some vars 4 years ago
docker-compose.yaml setting up postgres backend w. async 4 years ago

README.md

bones

Simple IRC bot written in Rust as a learning exercise. Uses the irc crate.

Notes

docker build -t torsocks torsocks
docker run --name torsocks --rm -d -p 9050:9050 torsocks
mkdir -p certs
openssl req -nodes -newkey rsa:2048 -keyout certs/lza_rustbot.pem -x509 -days 3650 -out certs/lza_rustbot.crt -subj "/CN=lza_rustbot"
openssl x509 -sha1 -noout -fingerprint -in certs/lza_rustbot.crt | sed -e 's/^.*=//;s/://g'
docker-compose up -d