Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit c58ea9e

Browse files
committed
add a README
1 parent 5bbaaab commit c58ea9e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# node-js-sample
2+
3+
This is a barebones Node.js app using the [Express](http://expressjs.com/) framework.
4+
5+
## Running Locally
6+
7+
Asumming you have [Node.js](http://nodejs.org/) and [Heroku Toolbelt](https://toolbelt.heroku.com/) installed on your machine:
8+
9+
```sh
10+
git clone [email protected]:heroku/node-js-sample.git # or clone your own fork
11+
cd node-js-sample
12+
npm install
13+
foreman start
14+
```
15+
16+
Your app should now be running on [localhost:5000](http://localhost:5000/).
17+
18+
## Deploying to Heroku
19+
20+
```
21+
heroku create
22+
git push heroku master
23+
heroku open
24+
```

0 commit comments

Comments
 (0)