From 8320c37ed4ce426ed60d7423c487023ba7a73a7d Mon Sep 17 00:00:00 2001 From: Daniel Oaks Date: Sun, 16 Oct 2016 21:01:53 +1000 Subject: [PATCH] docs: Move things to this dir, fill it out a bit --- CHANGELOG.md => docs/CHANGELOG.md | 0 docs/README | 35 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) rename CHANGELOG.md => docs/CHANGELOG.md (100%) create mode 100644 docs/README diff --git a/CHANGELOG.md b/docs/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to docs/CHANGELOG.md diff --git a/docs/README b/docs/README new file mode 100644 index 00000000..662467aa --- /dev/null +++ b/docs/README @@ -0,0 +1,35 @@ + + ▄▄▄ ▄▄▄· ▄▄ • ▐ ▄ + ▪ ▀▄ █·▐█ ▀█ ▐█ ▀ ▪▪ •█▌▐█▪ + ▄█▀▄ ▐▀▀▄ ▄█▀▀█ ▄█ ▀█▄ ▄█▀▄▪▐█▐▐▌ ▄█▀▄ + ▐█▌.▐▌▐█•█▌▐█ ▪▐▌▐█▄▪▐█▐█▌ ▐▌██▐█▌▐█▌.▐▌ + ▀█▄▀▪.▀ ▀ ▀ ▀ ·▀▀▀▀ ▀█▄▀ ▀▀ █▪ ▀█▄▀▪ + +----------------------------------------------------------------------------------------------- + +Oragono is a modern, experimental IRC server written in Go. It's designed to be simple to setup +and use, and to provide the majority of features that IRC users expect today. + +It includes features such as UTF-8 nicks and channel names, client accounts and SASL, and other +assorted IRCv3 support. + + https://github.com/DanielOaks/oragono + +----------------------------------------------------------------------------------------------- + + +=== Installing === + +Copy the example config file to ircd.yaml with a command like: + + $ cp oragono.yaml ircd.yaml + +Modify the config file as you like. + +Run these commands in order -- these will setup each section of the server: + + $ oragono initdb + $ oragono mkcerts + $ oragono run + +And you should now be running Oragono!