https://github.com/endel/laravel4-grunt
Empty Laravel 4 project using Grunt to compile javascript and stylesheet assets. You may customize it for your need.
https://github.com/endel/laravel4-grunt
Last synced: about 1 year ago
JSON representation
Empty Laravel 4 project using Grunt to compile javascript and stylesheet assets. You may customize it for your need.
- Host: GitHub
- URL: https://github.com/endel/laravel4-grunt
- Owner: endel
- Created: 2013-07-12T17:00:47.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-08-04T14:07:43.000Z (almost 13 years ago)
- Last Synced: 2025-02-12T06:21:16.757Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 160 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel 4 + Grunt
That's an empty [Laravel 4](http://github.com/laravel/laravel) project using [Grunt](https://github.com/gruntjs/grunt)
to compile javascript and stylesheet assets. You may customize it for your need.
### Dependencies
- [npm](http://nodejs.org/download/)
- [composer](http://getcomposer.org/download/)
- [gruntjs](http://gruntjs.com/getting-started)
### Installation
$ composer install
$ npm install
### Assets structure
app/ # laravel application folder
assets/ # public assets folder
├── javascripts/ # javascript source assets
└── stylesheets/ # stylesheet source assets
public/ # final public folder
├── app.min.js # compiled javascript files
└── app.min.css # compiled stylesheet files
Run `grunt` to build the compiled assets, and `grunt watch` to watch for
changes.
### Artisan commands
- `db:reset` - Drop all tables, migrate, and seed.
### License
[MIT license](http://opensource.org/licenses/MIT)