From 6fec6ea09435644ac3f55f4219024ab4e4d3fb67 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Fri, 28 Mar 2014 01:13:05 +0100 Subject: Added README and LICENSE --- LICENSE | 4 ++++ README.markdown | 13 +++++++++++++ static/.gitignore | 1 + tpls/home.html | 8 ++++++++ 4 files changed, 26 insertions(+) create mode 100644 LICENSE create mode 100644 README.markdown create mode 100644 static/.gitignore diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c74f13c --- /dev/null +++ b/LICENSE @@ -0,0 +1,4 @@ + DO WHATEVER THE FUCK YOU WANT, PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHATEVER THE FUCK YOU WANT. diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..42afa23 --- /dev/null +++ b/README.markdown @@ -0,0 +1,13 @@ +# simplechat + +A simple websocket-based chatserver written in Go. + +## Installation + +`go get github.com/kch42/simplechat` + +You will also need the [jQuery](http://jquery.com) library. Download the minified version from and save it as `static/jquery.min.js` + +## You are also free to use my public installation + +[chat.kch42.net](http://chat.kch42.net) diff --git a/static/.gitignore b/static/.gitignore new file mode 100644 index 0000000..32f949b --- /dev/null +++ b/static/.gitignore @@ -0,0 +1 @@ +jquery.min.js diff --git a/tpls/home.html b/tpls/home.html index fdfa40f..61b5678 100644 --- a/tpls/home.html +++ b/tpls/home.html @@ -33,5 +33,13 @@

NOTE: Keep in mind that this service does not use encryption. So please, don't share sensible data that might get you into trouble, there are much better tools for that (XMPP+OTR or GPG, for example).

+ +
+

Open source

+ +
+

simplechat is open source. Go get the sources on GitHub!

+
+
-- cgit v1.2.3-54-g00ecf