https://github.com/itsthatguy/generator-firepit
Node static site starter project Yeoman Generator.
https://github.com/itsthatguy/generator-firepit
Last synced: 9 months ago
JSON representation
Node static site starter project Yeoman Generator.
- Host: GitHub
- URL: https://github.com/itsthatguy/generator-firepit
- Owner: itsthatguy
- Created: 2014-04-09T18:56:32.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-05-10T18:28:15.000Z (about 11 years ago)
- Last Synced: 2025-08-09T06:49:27.953Z (11 months ago)
- Language: CoffeeScript
- Size: 673 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Generator-Firepit
[](https://travis-ci.org/itsthatguy/generator-firepit)
Firepit is a Node static site starter project Yeoman Generator. The only reason I say that it is a static site starter project is because it doesn't start out serving anything other than static assets. If you want to add that on, go for it. This is a normal node stack after all.
### Includes
* Node
* Express
* Bower
* jQuery
* Ember
* Handlebars
* Gulp
* Livereload
* Browserify
* Stylus
* Coffeescript
* nodemon
## Getting Started
### Install yeoman
```
npm install -g yo
```
### Install Firepit!
```
npm install -g generator-firepit
```
## Using Firepit
Simply run the generator in a new project directory:
```
mkdir myproject && cd $_
yo firepit
```
## Now what? Up and Running
### Running
1. Run the server: `npm start`
2. Browse to: `http://localhost:3002`
Assets will automatically be compiled, while the server is running. So all you need to do is run `npm start`.
### Deploying to heroku
1. Create your heroku instance `heroku create`
2. Deploy `git push heroku master`
3. Dance.