Skip to content

Commit

Permalink
fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
nicferrier committed Aug 15, 2012
1 parent d81a1e2 commit bacafde
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Expand Up @@ -11,11 +11,10 @@ Make a git repository with a file start-elnode.el:


```lisp ```lisp
;;; start-elnode.el ;;; start-elnode.el
(add-to-list package-archives "http://marmalade-repo.org/packages/") (setq package-archives '(("marmalade" . "http://marmalade-repo.org/packages/")))
(package-initialize) (package-initialize)
(package-refresh-contents) (package-refresh-contents)
(package-install 'elnode) (package-install 'elnode)
(require 'elnode)
(defun handler (httpcon) (defun handler (httpcon)
"Demonstration function" "Demonstration function"
Expand All @@ -34,8 +33,7 @@ Make a git repository with a file start-elnode.el:


add heroku as a remote to the repo: add heroku as a remote to the repo:


$ heroku create --stack cedar \ $ heroku create --stack cedar --buildpack http://github.com/nicferrier/heroku-buildpack-emacs.git
--buildpack http://github.com/nicferrier/heroku-buildpack-emacs.git


and then deploy the app by pushing to heroku: and then deploy the app by pushing to heroku:


Expand All @@ -45,7 +43,7 @@ and then deploy the app by pushing to heroku:
-----> Fetching custom buildpack -----> Fetching custom buildpack
-----> Emacs Lisp app detected -----> Emacs Lisp app detected
-----> Downloading Emacs 24.0.50.1 -----> Downloading Emacs 24.0.50.1
Downloading Emacs 24 pretest from http://p.hagelb.org/emacs.tar.gz... Downloading Emacs 24 pretest from github
...done ...done


The buildpack will detect that your app has a `start-elnode.el` in the root The buildpack will detect that your app has a `start-elnode.el` in the root
Expand Down

0 comments on commit bacafde

Please sign in to comment.