mirror of
https://gitlab.com/niansa/asbots.git
synced 2025-03-06 20:48:25 +01:00
Made the readme a bit nicer
This commit is contained in:
parent
58753858b4
commit
412c43036a
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
@ -1,8 +1,8 @@
|
||||||
# asbots
|
# asbots
|
||||||
This project aims for a simple yet complete irc services implementation for TS6 IRC daemons. VERY WIP!!!
|
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
|
## Building
|
||||||
This project uses cmake:
|
This project uses CMake:
|
||||||
|
|
||||||
git clone https://gitlab.com/niansa/asbots.git
|
git clone https://gitlab.com/niansa/asbots.git
|
||||||
cd asbots
|
cd asbots
|
||||||
|
@ -12,17 +12,17 @@ This project uses cmake:
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
The only direct dependency is [libasync-uv](https://gitlab.com/niansa/libasync-uv). See its README for installation instructions.
|
The only direct library dependency is [libasync-uv](https://gitlab.com/niansa/libasync-uv). A C++20 compliant compiler is required. See its README for installation instructions.
|
||||||
|
|
||||||
## Supported platforms
|
## 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.
|
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.
|
Feel free to offer some help in getting this to work on Windows.
|
||||||
|
|
||||||
## Config file
|
## Config file
|
||||||
The config file uses the "INIL" (INI-like) format, parsed by `configParser.cpp`. It's syntax is:
|
The config file uses the "INIL" (INI-like) format, parsed by [`configParser.cpp`](/configParser.cpp). It's syntax is:
|
||||||
|
|
||||||
[section name]
|
[section name]
|
||||||
key: value
|
key: value
|
||||||
end
|
end
|
||||||
|
|
||||||
An example is provided as `config.inil`
|
An example is provided as [`config.inil`](/config.inil)
|
||||||
|
|
Loading…
Add table
Reference in a new issue