https://github.com/maxlab/silex-gulp-skeleton
silex gulp skeleton + livereload
https://github.com/maxlab/silex-gulp-skeleton
Last synced: over 1 year ago
JSON representation
silex gulp skeleton + livereload
- Host: GitHub
- URL: https://github.com/maxlab/silex-gulp-skeleton
- Owner: Maxlab
- Created: 2015-10-02T14:57:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-14T09:59:22.000Z (over 10 years ago)
- Last Synced: 2025-01-07T08:12:46.728Z (over 1 year ago)
- Language: PHP
- Size: 168 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silex-gulp-skeleton
Silex skeleton + gulp + livereload
# Installation
#### Step 1
```sh
$ git init
$ git remote add master git@github.com:Maxlab/silex-gulp-skeleton.git
$ git remote -v
$ git fetch master
$ git checkout master
$ git remote remove master
$ cp ./app/config.distr.php ./app/config.php
# OR one line command
$ git init && git remote add master git@github.com:Maxlab/silex-gulp-skeleton.git && git remote -v && git fetch master && git checkout master && git remote remove master && cp ./app/config.distr.php ./app/config.php
```
#### Step 2
```sh
$ composer install
$ sudo npm install
$ find . -type d -exec sudo chmod 755 {} \;
$ find . -type f -exec sudo chmod 644 {} \;
$ bower install
$ sudo gulp
# OR one line command
$ composer install && sudo npm install && bower install && find . -type d -exec sudo chmod 755 {} \; && find . -type f -exec sudo chmod 644 {} \; && gulp
```
# The end
Enjoy)