All Projects → andrewscwei → generator-vars-jekyll

andrewscwei / generator-vars-jekyll

Licence: MIT license
Generator for raw web app with CircleCI, Jekyll, Webpack, Express + more.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
shell
77523 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to generator-vars-jekyll

Generator Fountain Angular2
Yeoman 'fountain' generator to start a webapp with Angular 2
Stars: ✭ 84 (+366.67%)
Mutual labels:  gulp, yeoman
jt tools
Ruby on Rails Continuous Deployment Ecosystem to maintain Healthy Stable Development
Stars: ✭ 13 (-27.78%)
Mutual labels:  heroku, circleci
Generator Fountain Angular1
Yeoman 'fountain' generator to start a webapp with Angular 1
Stars: ✭ 95 (+427.78%)
Mutual labels:  gulp, yeoman
Generator Gulp Express Webapp
Yeoman generator for building a simple web app using express + gulp. This project contains proper project and build structure to be easily extensible.
Stars: ✭ 8 (-55.56%)
Mutual labels:  gulp, yeoman
Express Webpack React Redux Typescript Boilerplate
🎉 A full-stack boilerplate that using express with webpack, react and typescirpt!
Stars: ✭ 156 (+766.67%)
Mutual labels:  heroku, circleci
Generator Fountain Webapp
Yeoman 'fountain' generator to start a webapp
Stars: ✭ 985 (+5372.22%)
Mutual labels:  gulp, yeoman
spring-boot-angular2-starter
Starter application. Spring Boot, Angular 2, TypeScript, Gulp, Gradle, SCSS.
Stars: ✭ 35 (+94.44%)
Mutual labels:  heroku, gulp
generator-phaser-browserify
A generator for Phaser using Gulp and Browserify
Stars: ✭ 36 (+100%)
Mutual labels:  gulp, yeoman
Generator Django Rest
Yeoman generator for a Django REST/GraphQL API, an optional React SPA & lots more!
Stars: ✭ 77 (+327.78%)
Mutual labels:  heroku, yeoman
Skyhook
Parses webhooks and forwards them in the proper format to Discord.
Stars: ✭ 263 (+1361.11%)
Mutual labels:  heroku, circleci
Generator Webapp
A gulp.js generator for modern webapps
Stars: ✭ 3,784 (+20922.22%)
Mutual labels:  gulp, yeoman
kibe
A simple Yeoman Generator to start projects with the most common tasks of my workflow using Gulp.
Stars: ✭ 33 (+83.33%)
Mutual labels:  gulp, yeoman
Generator Jekyllized
A Yeoman generator for Jekyll to rapidly build sites using Gulp
Stars: ✭ 332 (+1744.44%)
Mutual labels:  gulp, yeoman
Generator Buildabanner
Yeoman workflow to get a standard or DoubleClick banner started quickly.
Stars: ✭ 49 (+172.22%)
Mutual labels:  gulp, yeoman
Generator Webappstarter
Quick start a web app for mobile.Automatically adjusts according to a device’s screen size without any extra work.
Stars: ✭ 298 (+1555.56%)
Mutual labels:  gulp, yeoman
phx-auth-api
Authentication for Phoenix with JWT, user privileges and CI
Stars: ✭ 13 (-27.78%)
Mutual labels:  heroku, circleci
generator-vintage-frontend
Modern front-end workflow
Stars: ✭ 15 (-16.67%)
Mutual labels:  gulp, yeoman
generator-yeomify-landing
Yeoman generator for landing project powered by Gulp
Stars: ✭ 29 (+61.11%)
Mutual labels:  gulp, yeoman
nest-js-boilerplate
Nest.js boilerplate
Stars: ✭ 79 (+338.89%)
Mutual labels:  heroku, yeoman
generator-fountain-react
Yeoman 'fountain' generator to start a webapp with React
Stars: ✭ 36 (+100%)
Mutual labels:  gulp, yeoman

generator-vars-jekyll

Yeoman generator for a Jekyll-based web app.

Features

Requirements

  1. Node >=v5.0.0
  2. Ruby >=v2.3.0
  3. Bundler

Structure

.
+-- .babelrc
+-- .buildpacks
+-- .editorconfig
+-- .gitignore
+-- .jshintrc
+-- .taskconfig
+-- app
|   +-- .jshintrc
|   +-- _assets
|   |   +-- stylesheets
|   |   |   +-- base
|   |   |   |   +-- definitions.scss
|   |   |   |   +-- layout.scss
|   |   |   |   +-- typography.scss
|   |   |   +-- main.scss
|   |   +-- fonts
|   |   +-- images
|   |   +-- javascripts
|   |   |   +-- main.js
|   |   +-- vendor
|   |   +-- videos
|   +-- _data
|   +-- _drafts
|   +-- _includes
|   +-- _layouts
|   |   +-- compress.html
|   |   +-- default.html
|   +-- _posts
|   +-- 404.html
|   +-- 500.html
|   +-- index.html
|   +-- apple-touch-icon-180x180-precomposed.png
|   +-- apple-touch-icon-152x152-precomposed.png
|   +-- apple-touch-icon-144x144-precomposed.png
|   +-- apple-touch-icon-120x120-precomposed.png
|   +-- apple-touch-icon-114x114-precomposed.png
|   +-- apple-touch-icon-76x76-precomposed.png
|   +-- apple-touch-icon-72x72-precomposed.png
|   +-- apple-touch-icon-60x60-precomposed.png
|   +-- apple-touch-icon-57x57-precomposed.png
|   +-- apple-touch-icon-precomposed.png
|   +-- browserconfig.xml
|   +-- favicon.ico
|   +-- favicon.png
|   +-- large.png
|   +-- launcher-icon-0-75x.png
|   +-- launcher-icon-1-5x.png
|   +-- launcher-icon-1x.png
|   +-- launcher-icon-2x.png
|   +-- launcher-icon-3x.png
|   +-- launcher-icon-4x.png
|   +-- manifest.json
|   +-- og-image.png
|   +-- robots.txt
|   +-- square.png
|   +-- tiny.png
|   +-- wide.png
+-- node_modules
+-- public
+-- test
|   +-- .jshintrc
|   +-- index.js
+-- vendor
|   +-- bundle
+-- _config.yml
+-- _prose.yml
+-- circle.yml
+-- Gemfile
+-- gulpfile.babel.js
+-- package.json
+-- README.md
+-- server.js

Usage

Install yo and generator-vars-jekyll:

$ npm install -g yo generator-vars-jekyll

Create a new directory for your project and cd into it:

$ mkdir new-project-name && cd $_ 

Generate the project:

$ yo vars-jekyll [app-name]

For details on initial setup procedures of the project, see its generated README.md file.

Release Notes

3.0.0

  1. Removed optional libraries. The goal of this generator is just to provide a boilerplate without unnecessary dependencies.
  2. Replaced Browserify with Webpack.
  3. Build/asset pipeline is now mainly driven by NPM scripts (although the core is still Gulp).
  4. Updated Jekyll to v3 and Node to v5.
  5. Updated NPM packages and Gems.
  6. Added CircleCI default integration (with Heroku).
  7. Added compatibility with the HTML5 boilerplate favicon template.
  8. Added CDN support.
  9. Many other optimizations.

2.0.0

  1. Updated version numbers of NPM package dependencies.
  2. Gulp tasks are now compressed into fewer files. As a result require-dir dependency is no longer necessary and is removed from package.json.
  3. Task configurations are now stored in ./tasks/.taskconfig.
  4. Static files such as images, stylesheets, and JavaScripts are now stored in app/_assets (instead of app/assets). These files are no longer generated by the Jekyll generator and are now being deployed by the Gulp pipeline. This is for faster development iteration using gulp-watch. As a result, liquid templating static files is discouraged.
  5. favicon.png, Apple touch and Open Graph specific icons are now moved to app/_assets/images. favicon.ico remains in the root directory.
  6. gulp-imagemin is removed because it is the most taxing task in the Gulp pipeline. Images should be optimized outside of the Gulp pipeline instead.
  7. Ruby version from 2.0.0 to 2.2.1.
  8. Minor syntactic sugar changes.
  9. Lots of optimizations, particularly boosting the efficiency of automated rebuilds during development.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].