Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jamiew/heroku-static-site
A basic Ruby/Rack app for publishing a static HTML/CSS/javascript website on Heroku (for free)
https://github.com/jamiew/heroku-static-site
css heroku html javascript ruby static-site
Last synced: 6 days ago
JSON representation
A basic Ruby/Rack app for publishing a static HTML/CSS/javascript website on Heroku (for free)
- Host: GitHub
- URL: https://github.com/jamiew/heroku-static-site
- Owner: jamiew
- Created: 2012-02-05T19:38:59.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2022-07-01T15:13:23.000Z (over 2 years ago)
- Last Synced: 2024-10-23T02:51:38.533Z (15 days ago)
- Topics: css, heroku, html, javascript, ruby, static-site
- Language: HTML
- Homepage: https://heroku-static-site-jamiew.herokuapp.com
- Size: 8.79 KB
- Stars: 144
- Watchers: 8
- Forks: 58
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
heroku-static-site
===========A simple ruby + rack application for serving a basic static website, suitable for deploying to [Heroku](http://heroku.com).
Their free 1-dyno plan covers 80% of my projects and Just Works™For even simpler free HTML cloud hosting check out [GitHub Pages](http://pages.github.com).
I put static sites on Heroku when I will be adding some simple dynamic stuff later,
or for redundancy with GH pages (whose uptime isn't perfect).Usage
-----Run the app locally:
1. `gem install bundler`
2. `bundle install`
3. `bundle exec rackup`
4. VisitMake something great, then push it to your [Heroku](http://heroku.com) account:
1. `gem install heroku`
2. `heroku login`
3. `heroku create --stack=cedar mynewapp`
4. `heroku git:clone -a mynewapp`
5. `git add .`
6. `git commit -am "make it better"`
7. `git push heroku master`License
-------© copyfree 2012 [Jamie Dubs](http://jamiedubs.com).
This source code made freely available under an [MIT License](http://www.opensource.org/licenses/mit-license.php).