Skip to content

pmahnke/robinwinslow.co.uk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

robin | blog

This is all the code behind my blog.

It uses Jekyll static site generator, and is hosted as a Heroku app.

Running the site locally

Install dependencies

$ sudo apt-get install ruby-dev # Install Ruby and Gems
$ gem install bundler           # Install bundler
$ bundle install                # Install project dependencies

Build the site (do this whenever something changes)

$ bundle exec rake              # Build the static site

Run the site

$ bundle exec rackup -p 9254    # Run the server

Now browse to 127.0.0.1:9254.

Publishing to robinwinslow.co.uk

rm -rf _site
git submodule update --init
cd _site
git add -A .
git commit -m 'Some changes'
git push # Publish!

About

My blog - robinwinslow.co.uk

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 93.0%
  • Ruby 7.0%