Skip to content

Commit

Permalink
Update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvincent committed Mar 5, 2012
1 parent e361925 commit a88a32f
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
# static files with sinatra on heroku!

### you may first need to install heroku command line tools
```gem install heroku```
```
gem install heroku
```

### login to heroku services
```heroku login```
```
heroku login
```

### if you haven't already, you'll need to set up ssh keys with heroku
```heroku keys:add```
```
heroku keys:add
```

## now, the repo!

### clone this repository to get you started (if you want)
```git clone git@github.com:sethvincent/sinatra-skeleton-heroku-static-pages-example.git```
```
git clone git@github.com:sethvincent/sinatra-skeleton-heroku-static-pages-example.git
```

### make and commit your changes
```
Expand All @@ -21,10 +29,14 @@ git commit -m 'stuff'
```

### when you're ready, create a site on heroku
```heroku create```
```
heroku create
```

### this creates a remote repo that you can push to
```git push heroku master```
```
git push heroku master
```

## done!

Expand Down

0 comments on commit a88a32f

Please sign in to comment.