Skip to content

Commit

Permalink
Migrated. We're live!
Browse files Browse the repository at this point in the history
  • Loading branch information
pnathan committed Aug 1, 2015
1 parent fb3768a commit 4f85ebf
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,2 +1,2 @@
from nginx
copy site/ /usr/share/nginx/html
copy _site/ /usr/share/nginx/html
10 changes: 10 additions & 0 deletions HACKING.md
@@ -0,0 +1,10 @@
hacking on articulate-common-lisp
---

contributions welcome.

* ./livetest.sh will spawn a localhost:4000 webserver which watches the filesystem
* ./build.sh will generate a Docker image ready for pushing
* ./test.sh will run the build.sh generated Docker image. Note that
this boots a nginx server.
* ACL is delivered as a Docker image
2 changes: 1 addition & 1 deletion _config.yml
Expand Up @@ -10,7 +10,7 @@ url: http://articulate-lisp.com
# be the project name.
# *** IMPORTANT: If your local "jekyll serve" throws errors change this to '' or
# run it like so: jekyll serve --baseurl=''
baseurl: /
baseurl: ''

# This can be '' to hide the Github nav button
github: 'pnathan/articulate-common-lisp'
Expand Down
5 changes: 5 additions & 0 deletions build.sh
@@ -0,0 +1,5 @@
#!/bin/bash
# host:guest port map.
docker run --label=jekyll --label=stable --volume=$(pwd):/srv/jekyll -t -p 127.0.0.1:4000:4000 jekyll/stable jekyll build

docker build -t pnathan/articulate-common-lisp:latest .
File renamed without changes.
9 changes: 0 additions & 9 deletions links.html

This file was deleted.

2 changes: 2 additions & 0 deletions test.sh
@@ -0,0 +1,2 @@
#!/bin/bash
docker run -p 8080:80 pnathan/articulate-common-lisp:latest

0 comments on commit 4f85ebf

Please sign in to comment.