Skip to content

Latest commit

 

History

History
72 lines (43 loc) · 1.84 KB

README.md

File metadata and controls

72 lines (43 loc) · 1.84 KB

Cakepan

Frontend developer toolkit to integrate your HTML/JS/CSS. Designed to work expressly with Symfony2, Silex and Wordpress project.

Provides a way to quickly design the front-end of a new responsive website. Can be easily plugged to Symfony2, Silex or Wordpress.

Using best in class tools:

Getting Started

Install project (with NPM):

npm install -g create-project
create-project . creads/cakepan

or install project (with wget):

wget -qO- https://github.com/creads/cakepan/archive/master.tar.gz | tar -xvz -C ./ && mv cakepan-master/* . && rm -rf cakepan-master

then install dependencies:

npm install -g bower browser-sync gulp
npm install

Build website and start dev webserver:

npm start

More about building

If you want to build the source:

gulp

If you want to build the source for the production, simply run:

gulp --prod

take car it will erase every templates and every assets.

If you want to start dev webserver:

gulp start

If you want to start dev webserver without relaunching a browser window:

gulp start --no

Proxy mode allows to serve pages from another webserver (like PHP) while continuing to edit JS and CCS into Cakepan source dir. If you want to enable proxy mode set build_dir, proxy.url, proxy.watch_dir and proxy.watch_files in your proxy.config.json and run:

gulp --mode=proxy

You can combine this with --prod option

If you want to clean build directory:

gulp clean