Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/relrod/simpleserv
A very minimalistic set of IRC services written for Charybdis IRCD in Scala.
https://github.com/relrod/simpleserv
Last synced: 13 days ago
JSON representation
A very minimalistic set of IRC services written for Charybdis IRCD in Scala.
- Host: GitHub
- URL: https://github.com/relrod/simpleserv
- Owner: relrod
- Created: 2012-11-13T03:09:13.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-04T13:06:14.000Z (almost 12 years ago)
- Last Synced: 2024-10-03T15:40:52.487Z (about 1 month ago)
- Language: Scala
- Size: 109 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SimpleServ
A very minimalistic set of IRC services written for Charybdis IRCD in Scala.
# NOTE: DO NOT USE THESE RIGHT NOW!
**Really** -- they don't even exist or compile yet. Everything that is committed
is a rough approximation of how it will look when actually implemented.# The How
You can very easily rip out and replace any part of SimpleServ.
In the configuration file, you'll find blocks which you can add and/or remove,
which control the services that are active, and which classes they point to.For example:
```
services.enabled = [
'chanserv',
'nickserv'
]
chanserv.class = me.elrod.SimpleServ.ChanServ
chanserv.nick = ChanServ
...
nickserv.class = my.special.NickServ.Implmementation
nickserv.nick = MyNickServ
nickserv.my_custom_setting = true
...
uplink.server = myuplink.mynetwork.net
uplink.port = 6667
uplink.password = changeme123123please
uplink.ssl = false
```Once you implement what you want, and configure it how you want, simply run
`sbt run` and watch SBT do its magic.More documentation will be coming once the services actually exist, but the idea
is that you will extend the `Service` trait, which will use the current protocol
driver (which is, itself, an extension of `LinkProtocol`).# License
Apache 2.