1
0
Fork 0
mirror of https://gitlab.com/niansa/asbots.git synced 2025-03-06 20:48:25 +01:00
Simple services for TS6 IRCs - written in modern C++20 using coroutines and libasync!
irc
Find a file
2023-02-11 17:42:20 +00:00
services Fixed some desyncs in ChanServ 2021-06-28 13:26:56 +02:00
sqlite_orm@1ee0a8653f First signs of NickServ arriving soon! lol 2021-06-23 14:02:41 +02:00
.gitignore Added gitignore file 2021-06-18 15:26:20 +02:00
.gitmodules First signs of NickServ arriving soon! lol 2021-06-23 14:02:41 +02:00
CMakeLists.txt Code that makes gcc crash... commited for bug reporting 2021-06-27 23:10:14 +02:00
config.hpp Added license notes to all files 2021-06-21 15:54:49 +02:00
config.inil First basic NickServ implementation has arrived!!! 2021-06-23 15:35:11 +02:00
configParser.cpp Added license notes to all files 2021-06-21 15:54:49 +02:00
exceptions.hpp Removed debug code 2021-06-28 12:07:26 +02:00
incompletes.hpp First very very very basic ChanServ implementation 2021-06-28 12:06:55 +02:00
instance.cpp Fixed compile error 2021-06-28 12:18:46 +02:00
instance.hpp Fixed some desyncs in ChanServ 2021-06-28 13:26:56 +02:00
LICENSE Add LICENSE 2021-06-21 13:51:55 +00:00
main.cpp First very very very basic ChanServ implementation 2021-06-28 12:06:55 +02:00
README.md Made the readme a bit nicer 2023-02-11 17:42:20 +00:00
serviceBase.cpp First very very very basic ChanServ implementation 2021-06-28 12:06:55 +02:00
serviceBase.hpp First very very very basic ChanServ implementation 2021-06-28 12:06:55 +02:00
uid.hpp Added license notes to all files 2021-06-21 15:54:49 +02:00
utility.cpp Added license notes to all files 2021-06-21 15:54:49 +02:00
utility.hpp Added license notes to all files 2021-06-21 15:54:49 +02:00

asbots

This project aims for a simple yet complete irc services implementation for TS6 IRC daemons. Not completed, but feel free to pick it up as a base for your own project!

Building

This project uses CMake:

git clone https://gitlab.com/niansa/asbots.git
cd asbots
mkdir build
cd build
cmake ..
make -j$(nproc)

Dependencies

The only direct library dependency is libasync-uv. A C++20 compliant compiler is required. See its README for installation instructions.

Supported platforms

This should in theory work on almost all platforms, however I can't offer support for Windows since I can't test the software there. Feel free to offer some help in getting this to work on Windows.

Config file

The config file uses the "INIL" (INI-like) format, parsed by configParser.cpp. It's syntax is:

[section name]
key: value
end

An example is provided as config.inil