All Projects → ksmandersen → startover

ksmandersen / startover

Licence: other
Startover is a boilerplate for developing static websites. With Startover you don't have to start over!

Programming Languages

CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to startover

Binserve
A blazingly fast static web server with routing, templating, and security in a single binary you can set up with zero code. ⚡️🦀
Stars: ✭ 401 (+2573.33%)
Mutual labels:  handlebars, static-site
bootstrap-gulp-starter-template
Bootstrap 4 + Gulp 4 + Panini for improve front-end development workflow
Stars: ✭ 67 (+346.67%)
Mutual labels:  gulp, handlebars
lnv-mobile-base
移动端开发脚手架-基于gulp的使用zepto、handlebars、sass并且带移动端适配方案(flexible.js)的前端工作流,旨在帮助移动端项目的开发
Stars: ✭ 41 (+173.33%)
Mutual labels:  gulp, handlebars
bro-start
🚗💨 Blazing fast webpack setup for static websites
Stars: ✭ 12 (-20%)
Mutual labels:  handlebars, static-site
Houl
Full-contained static site workflow
Stars: ✭ 27 (+80%)
Mutual labels:  gulp, static-site
Publii
Publii is a desktop-based CMS for Windows, Mac and Linux that makes creating static websites fast and hassle-free, even for beginners.
Stars: ✭ 3,644 (+24193.33%)
Mutual labels:  handlebars, static-site
generator-veams
Scaffold modern frontend web apps or web pages with a static site generator (Assemble or Mangony), Grunt and/or Gulp, Sass and Bower. Use modern frameworks like Bourbon, Bootstrap or Foundation and structure your JavaScript with ES Harmony support.
Stars: ✭ 45 (+200%)
Mutual labels:  gulp, static-site
stacy
Website generator that combines content from Contentful CMS with Handlebars templates and publishes the website in Amazon S3.
Stars: ✭ 24 (+60%)
Mutual labels:  handlebars, static-site
Panini
A super simple flat file generator.
Stars: ✭ 562 (+3646.67%)
Mutual labels:  gulp, handlebars
Assemble
Community
Stars: ✭ 3,995 (+26533.33%)
Mutual labels:  gulp, static-site
personal-page
Personal Page is a project that contains a person's personal information and resume.
Stars: ✭ 20 (+33.33%)
Mutual labels:  gulp, static-site
Gulp Hb
A sane Gulp plugin to compile Handlebars templates. Useful as a static site generator.
Stars: ✭ 145 (+866.67%)
Mutual labels:  gulp, handlebars
landing
This project builds the static and internationalized landing page of Upplication.
Stars: ✭ 26 (+73.33%)
Mutual labels:  gulp, static-site
Jekyll Boilerplate
Helpful files to get started working on a new Jekyll website
Stars: ✭ 30 (+100%)
Mutual labels:  gulp, static-site
Gulp Site Generator
A static site generator using Gulp
Stars: ✭ 183 (+1120%)
Mutual labels:  gulp, handlebars
jasper2
Full-featured Jekyll port of Ghost's default theme Casper v2 👻
Stars: ✭ 725 (+4733.33%)
Mutual labels:  static-site
generator-starterkit
Yeoman that scaffolds out a front end starterkit. 📦
Stars: ✭ 29 (+93.33%)
Mutual labels:  gulp
gulp-xo
Validate files with XO
Stars: ✭ 37 (+146.67%)
Mutual labels:  gulp
microstat
A self-hosted Micropub endpoint for statically-generated microblogs. 📝⚡️
Stars: ✭ 52 (+246.67%)
Mutual labels:  static-site
adfab-gulp-boilerplate
A boilerplate including Gulp, Less/SASS, BrowserSync.
Stars: ✭ 17 (+13.33%)
Mutual labels:  gulp

Startover

node apm

Startover is a highly opinionated boilerplate for developing static websites on your Mac using HTML5, Sass, Gulp and ES2015. With Startover you don't have to start over!

Another boilerplate?

I agree! We really don't need more boilerplates or frameworks for developing websites. Startover relies heavily on the works of others like html5boilerplate. However none of the boilerplates I've stumbled upon have been right for me. Startover is not for everyone. I created Startover to fit my workflow with the tools I like to use when developing websites. Starover can be used either as it is or as an inspiration for your development workflow.

A few disclaimers:

  • Startover is based on my workflow and how I work with static site development. I don't expect the code to be usable for anyone else but if you can use it that makes me happy!
  • The code in this repository is mostly undocumented. That means if you have no idea what some of the code do or just have a question, then just open up a new issue and I will try to respond.

The code in this repo assumes that you're familiar with the following technologies:

  • Gulp. A toolkit for automating tasks like moving, copying, building or otherwise manipulating files.
  • Sass. A superset of CSS that enables nesting, functions, mixins and more.
  • BEM. A strategy for naming CSS classes and HTML elements in a modular reusable fashion.
  • Handlebars. A templating language for HTML written in Javascript.
  • Express. A simple web server written running on node.js
  • Babel. A compiler that generates web browser supported Javascript from your ES2015/ES2016 code.
  • Dokku. A docker powered PaaS server. (Basically allows you to have your own Heroku server).

Other technologies used in this boilerplate: BrowserSync, Browserify, jQuery, Ladda, normalize.css, retina.js, Watchify.

Startover in the wild

Here are some sites that uses Starover 2.0:

Here are some sites that was built with Startover 1.0:

If you're using Startover you should totally tell me so you can get featured here on this list of awesome sites (self-five).

Requirements

You need to have the following installed to use the code in this repository:

The ease way to get node.js and GraphicsMagick on a mac is using homebrew. Just run:

brew update & brew install node graphicsmagick

Getting started

Clone the repository:

git clone [email protected]:ksmandersen/startover.git

Install the project dependencies for ruby gems and node packages:

npm install

Building

To run the local development version of the site with browser sync:

npm run dev

Build a local version of the site:

npm run build

Build a release version of the site:

npm run build-production

Deploying

I've been using Dokku for some time to deploy this stack. The repo includes a simple nodejs server app running on express to serve the static content of the site. You should be able to deploy the code anywhere that accepts a simple nodejs app, like Heroku.

License

The MIT License (MIT) Copyright (c) 2013-2016 Kristian Andersen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].