Skip to content

stopshitcode/site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SSC (Stop Shit Code) Site

https://stopshitcode.org

The SSC site is open source, found a bug, an issue, or a typo in our docs? Please report using an issue or submit a pull request.

Thanks!

Building

If you want to submit a PR or test a change to fix a link, etc it may be helpful for you to build and run locally.

This project is built using Jekyll

Simplify launch via Docker

  1. Build the site and make it available on a local server inside Docker
    docker run --rm --volume="$PWD/docs:/srv/jekyll" --volume="$PWD/docs/vendor/bundle:/usr/local/bundle" --publish 4000:4000 --interactive --tty jekyll/builder:4.0.0 bundle update
    docker run --rm --volume="$PWD/docs:/srv/jekyll" --volume="$PWD/docs/vendor/bundle:/usr/local/bundle" --publish 4000:4000 --interactive --tty jekyll/builder:4.0.0 bundle exec jekyll serve --host 0.0.0.0
  2. Browse to http://127.0.0.1:4000

Local

  1. Install Jekyll. See https://jekyllrb.com/docs/
  2. Build the site and make it available on a local server..
    cd docs
    bundle update
    bundle exec jekyll serve serve --host 127.0.0.1
  3. Browse to http://127.0.0.1:4000