From 00f2747f34363234f6a37c555d34a43e668eb267 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 4 Feb 2015 09:27:08 -0800 Subject: [PATCH] Add info about docker deployment --- views/portfolio.moon | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/views/portfolio.moon b/views/portfolio.moon index cb81bd1..6c4c6d5 100644 --- a/views/portfolio.moon +++ b/views/portfolio.moon @@ -8,17 +8,17 @@ class Portfolio extends Widget h1 "Projects I've Made" div class: "row", -> - div class: "col-xs-12 col-sm-6 col-md-6 col-lg-6", -> + div class: "col-xs-12 col-sm-6 col-md-6 col-lg-4", -> div class: "box", -> div class: "box-icon", -> span class: "fa fa-4x fa-code" div class: "info", -> h4 class: "text-center", "Elemental-IRCd" - p "Elemental-IRCd is a fork of the (now defunct) ShadowIRCd project. It is also a fork of Atheme's Charybdis irc daemon with more user-friendly features. Most of these things are security patches, network staff usability features, patches that make centralized management simpler and extra status levels in channels; but the resulting core changes mean it needs to be its own project. I plan to replace this with something still in development called Scylla." + p "Elemental-IRCd is a fork of the (now defunct) ShadowIRCd project. It is also a fork of Atheme's Charybdis irc daemon with more user-friendly features. Most of these things are security patches, network staff usability features, patches that make centralized management simpler and extra status levels in channels; but the resulting core changes mean it needs to be its own project. I plan to replace this with something still in development called Scylla. On average there are right now over 800 people using this software to communicate." a href: "https://github.com/elemental-ircd/elemental-ircd", class: "btn", "Learn More" - div class: "col-xs-12 col-sm-6 col-md-6 col-lg-6", -> + div class: "col-xs-12 col-sm-6 col-md-6 col-lg-4", -> div class: "box", -> div class: "box-icon", -> span class: "fa fa-4x fa-cogs" @@ -30,4 +30,15 @@ class Portfolio extends Widget p "This would be implemented by the core being a minimal message bus that routes things to the appropriate component, allowing the components to be written in any language. It is still in the early planning stage but I hope to have something working by next year." a href: "https://github.com/Xe/scylla", class: "btn", "Learn More" + div class: "col-xs-12 col-sm-6 col-md-6 col-lg-4", -> + div class: "box", -> + div class: "box-icon", -> + span class: "fa fa-4x fa-server" + div class: "info", -> + h4 class: "text-center", "Scalable Deployment on Docker" + p -> + text "This site and a few others I host are deployed inside Docker containers and are updated using " + code "git push" + text ". The code for this site is available to the public at the link below. This is a simple Lapis application inside nginx and deployed using my docker-lapis image." + a href: "http://git.xeserv.us/xena/site", class: "btn", "Learn More"