Skip to content
This repository was archived by the owner on Dec 12, 2018. It is now read-only.

Latest commit

 

History

History
35 lines (23 loc) · 869 Bytes

File metadata and controls

35 lines (23 loc) · 869 Bytes

Node Boilerplate

This is my personal boilerplate code when I want to make a new web app. It uses Node.js with Hapi 8.4, Handlebars, and Bootstrap. This is ready to deploy to Heroku.

Testing Locally

Make sure you have Node.js and the Heroku Toolbelt installed.

$ foreman start web

App should now be running on localhost:5000.

Deploying to Heroku

For a new heroku app:

$ heroku create some-name
$ git push heroku master
$ heroku open

For an existing heroku app:

$ heroku git:remote --app some-name
$ git push heroku master
$ heroku open

Live Example

This app is currently running as Ezra-Master