This is the repository for the Codio website. It is primarily a Middleman application, which is a static site generator.
We encourage you to send us pull requests for anything that you think may fix or improve the site.
This repository is hosted on Github as a Git repo at https://github.com/codio/site. You will therefore need to install Git so you can check out the code and run it locally.
You will also need the latest version of Ruby 2.1.3, along with RubyGems and Bundler.
Also you need to install ImageMagick for some image magick that is happening.
Additionally for compressing images the image_optim needs to be setup. Instructions for that can be found here
First check out the code to your local machine. Once you have the code checkout out locally, and you have Ruby and Bundler installed, install the required Ruby Gems by running:
$ bundle install
If this command fails, you most likely do not have Bundler installed. So run this:
$ gem install bundler
Once your bundle is installed, you can simply run middleman
in your
terminal to start a local server that will serve the site.
Make sure you run the middleman
command while in the directory where the app resides.
Now just open up your browser and go to http://localhost:4567
If you are using codio.com or another place where the access to the site is not on
localhost:4567
you should set the env variable M_ASSET_HOST
to the hostname in use.
If for example your codio host is http://goffer-elench.codio.io:3000
you can start
middleman like this:
$ M_ASSET_HOST=http://goffer-elench.codio.io:3000 bundle exec middleman
- Checkout a new branch
git checkout -b my_awesome_branch
- Make your changes,
All the source code (HTML, CSS, Javascript, etc.) is located within
the
/source
directory. Changes that you make to any file within this directory can be viewed in your browser at the above URL. - Once you have made your changes, simply commit them and push them up to the new remote branch at Github.
Give Joel (jmoss@codio.com) or Friedel (fziegelmayer@codio.com) a shout if you need any help.