Skip to content

Commit

Permalink
readme updated, example config updated, project.clj updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Grigory Romodanovskiy committed Apr 29, 2018
1 parent e90fa83 commit ba7085b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 35 deletions.
58 changes: 29 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
# org.red/killbot
# org.red/ares

TODO: Brief description
A tool that fetches information from [zKillboard] and posts relevant killmails to a discord channel via a webhook.
Example: ![alt text](https://i.imgur.com/LUbgL5U.png)


[zKillboard]: https://zkillboard.com

## Releases and Dependency Information

* Releases are published to TODO_LINK

* Latest stable release is TODO_LINK

* All released versions TODO_LINK

[Leiningen] dependency information:

[org.red/killbot "0.1.0-SNAPSHOT"]

[Maven] dependency information:

<dependency>
<groupId>org.red</groupId>
<artifactId>killbot</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>

[Leiningen]: http://leiningen.org/
[Maven]: http://maven.apache.org/


The project is intended to be used as an application, not a library, and therefore not published to clojars/maven.
The latest precompiled binaries can be found in releases tab on github.

## Usage

TODO

Supply a config file via a cmd parameter `-c` (example: `-c example-config.edn`)


## Change Log

* Version 0.1.0-SNAPSHOT
* Version 0.3.0-SNAPSHOT - Support for multiple destinations, filtering based on region
* Version 0.1.0-SNAPSHOT - Initial release



## Copyright and License
MIT License


Copyright © 2018 greg2010

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

Copyright © 2018 TODO_INSERT_NAME
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

TODO: [Choose a license](http://choosealicense.com/)
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
8 changes: 5 additions & 3 deletions example-config.edn
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
:destinations [
{
:discord-wh "http://WH"
:bot-name "Your bot name here"
:bot-picture "URL to your bot avatar here"
:discord-wh {
:url "http://WH"
:bot-name "Your bot name here"
:bot-picture "URL to your bot avatar here"
}
:relevant-entities {
:corporation-ids []
:alliance-ids [1354830081]
Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(defproject killbot "0.3.0-SNAPSHOT"
(defproject org.red/ares "0.3.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.4.0"]
[ch.qos.logback/logback-classic "1.2.3"]
Expand Down

0 comments on commit ba7085b

Please sign in to comment.