https://github.com/springmeyer/healthcare.gov
https://github.com/springmeyer/healthcare.gov
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/springmeyer/healthcare.gov
- Owner: springmeyer
- License: other
- Created: 2013-10-13T03:03:03.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-03T18:06:55.000Z (almost 13 years ago)
- Last Synced: 2025-03-26T14:12:20.052Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://www.healthcare.gov
- Size: 4.48 MB
- Stars: 6
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# HealthCare.gov-Open-Source-Release
This project includes the source code and content for the healthcare.gov website. For more information, please visit https://www.healthcare.gov/developers
## Local Installation Requirements
- Linux, Unix, Windows or Mac OS X
- [Ruby](http://www.ruby-lang.org/en/downloads/)
- [RubyGems](http://rubygems.org/pages/download)
- [Jekyll](http://jekyllrb.com)
## Ruby
### To install ruby on unix:
`yum install ruby` (or `sudo apt-get install ruby1.9.1`)
### To install ruby on Mac OS X:
`curl -L https://get.rvm.io | bash -s stable --ruby`
Visit the following links for more detailed information on how to set up Ruby using a method applicable to your environment:
Three Ways of Installing Ruby (Linux/Unix)
http://www.ruby-lang.org/en/downloads/
RubyInstaller for Windows
http://rubyinstaller.org/
How to Install Ruby on a Mac
http://net.tutsplus.com/tutorials/ruby/how-to-install-ruby-on-a-mac/
## Install rubygems:
- `cd ~/`
- `wget http://production.cf.rubygems.org/rubygems/rubygems-1.8.24.tgz`
- `tar xzvf rubygems-1.8.24.tgz`
- `cd rubygems-1.8.24`
- `ruby setup.rb`
## Managing Dependencies Using Bundler
We recommend using Bundler to manage dependencies. Once you have Ruby installed, install Bundler by running the following command: 'gem install bundler'
Once Bundler is installed, you install/update depencies by simply running 'bundle install' within your project folder.
More information on Bundler may be found here: http://gembundler.com/
## Install Jekyll
- `cd healthcare.gov` (or the location of your cloned repository)
- `bundle install`
For more information and detailed documentation on Jekyll, visit the following sites:
Jekyll Project Home
http://jekyllrb.com
Jekyll on GitHub
https://github.com/mojombo/jekyll
## Clone the repository
- `cd /var/www/html` (or the location you would like the compiled site to live)
- `git clone https://github.com/CMSgov/HealthCare.gov-Open-Source-Release.git healthcare.gov`
## Generate the site and serve
- `jekyll serve`
- Browse to [localhost:4000](http://localhost:4000) to view the site