Skip to content

Marjoel/website-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Website's boilerplate

A website's boilerplate using grunt, bower and less.

Dependencies

  1. Install Git, if you don't have it yet.
  2. Install NodeJS, if you don't have it yet.

Setup

Once you have all dependencies installed, you just need to:

Open your terminal and clone the project.

$ git clone https://github.com/Marjoel/website-boilerplate

Then go to the project's folder.

$ cd website-boilerplate

Install local dependencies.

$ npm install

You should to put your Google Analytics ID in /project/assets/js/analytics.js

var gaId = 'UA-XXXXXXXX-X'; // change 'UA-XXXXXXXX-X' for your Google Analytics ID

You should to put your website name in /project/.htaccess, change website to your website

RewriteCond %{HTTP_HOST} ^website.com [NC]
RewriteRule ^(.*)$ http://www.website.com/$1 [r=301,NC]

Usage

Execute the command below to generate the website into /dist directory and start the server (before the development).

$ npm start

Execute this to generate the website into /dist directory (after the development).

$ grunt build

Then run on the browser.

http://localhost:8081

Explanations

Grunt /tasks:

  • grunt-contrib-clean: delete the /dist path
  • grunt-contrib-copy: copy the .html,.htaccess and robots.txt to /dist
  • grunt-contrib-htmlmin: minify the .html files
  • grunt-contrib-uglify: minify combine and minify the .js files
  • grunt-contrib-imagemin: minify the images
  • grunt-contrib-cssmin: minify the .css file
  • grunt-contrib-less: css preprocessor
  • grunt-purifycss: remove the css code that is not using
  • grunt-csscomb: combine the css media queries
  • grunt-contrib-connect: start the server on http://localhost:8081
  • grunt-contrib-watch: watch for modifications on .css, .js and .html
  • grunt-concurrent: start more than one watch per time

You should read this

  • When you use any js component on bower, add it on /task/uglify.js
  • When you use any css component on bower, add it on /task/less.js
  • When you use any css class that is added on html through js, add the .js file on /task/purifycss.js

About

Website Initial Template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published