jsanch / starter

A starter template for projects.

Home Page:https://github.com/polygraph-cool/starter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

starter

A starter template for projects.

  • Write in ES6 (preset with d3)
  • Stylus for CSS pre-processor
  • Bundles, minifies JS with Webpack
  • Bundles, minifies, auto-prefixes CSS
  • Inlines CSS
  • Async font loading (using FOUT)

Dependencies

node

Setup

Create a new project directory and cd into it, then:

curl -Lk http://bit.ly/2bgptna > Makefile; make;

Usage

Development

gulp

Any changes to the src folder will trigger live reload.

Put JS in src/js/entry.js and CSS in src/css/story/story.styl.

Deploy

Run gulp prod

This generates a single html file with inlined css, a single js file, and a folder with assets in the dist/prod folder.

To deploy new dev version on github run make github

To deploy live to s3, you must install awscli and configure your settings. Then run the following, replacing year/month/name with your own (eg. 2017/01/nba):

aws s3 sync dist/prod s3://pudding.cool/year/month/name --delete

To force cloudfront to fetch latest html file (replacing id-here with the cloudfront distro id, and year/month/name with your project filepath):

aws cloudfront create-invalidation --distribution-id id-here --paths /year/month/name/

Note: For cloudfront you must add extra configuration

Fonts

Our serif font is Mercury and our sans-serif is Whitney. We have two weights, 400 and 700, and normal and italic.

Simply add the class tk-mercury or tk-whitney to any element. It will apply that font to all children. Apply one to the body tag to set your default font for the page.

It is recommended to use html markup (em and strong) to apply weighting and styling. The proper css is already applied.

About

A starter template for projects.

https://github.com/polygraph-cool/starter


Languages

Language:HTML 60.1%Language:JavaScript 27.4%Language:CSS 12.0%Language:Makefile 0.5%