clear out readme

DJ committed Jun 21, 2018
commit 590ec944f0fe20405d28ac37ac3348eca154a02c
Showing 1 changed file with 2 additions and 173 deletions
README.md +2 -173
@@ @@ -1,175 +1,4 @@
- # Jekyll Boilerplate
- **A Jekyll boilerplate for building modern websites ๐ŸŒฒ**
+ # uBuild Jekyll Theme
- This boilerplate wraps [Jekyll](https://jekyllrb.com) with [Gulp](https://gulpjs.com/) as your local development build pipeline.
+ ## Getting Started
- [PostCSS](http://postcss.org/) and [Webpack](https://webpack.js.org/) + [Babel](https://babeljs.io/) are used for CSS and JS compiling & transpiling.
-
- [BrowserSync](https://www.browsersync.io/) is used for providing a modern local development experience, allowing you to preview your site on multiple devices in sync.
-
- [BrowsersList](https://github.com/ai/browserslist) is used for configuring Browser support.
-
- [SVG Sprite](https://github.com/jkphl/svg-sprite) is used to generate an SVG Sprite.
-
- # Installation
-
- ## Prerequisites
- To use Gulp, you must have [Node](https://nodejs.org/en/download/) and [NPM](https://www.npmjs.com/get-npm) installed.
-
- ## Setup
-
- Once the prerequisites are installed, clone the repository to your local machine, and then run:
-
- ```
- npm install
- ```
-
- This will install Jekyll as well as all of the Node dependencies needed to run your Jekyll environment. This may take a little while!
-
- # Development
- All development tasks are performed using npm run. See `"scripts"` in [package.json](/package.json) for a full list of commands.
-
- ## Local Development
-
- Local development is powered by BrowserSync, you will be able to develop sites rapidly through:
-
- - A local development server at `http://localhost:3000/`.
- - Automatic CSS updates without reloading the page
- - Automatic page reloads when content is changed
-
- Running the local development server is as simple as running:
-
- ```
- npm start
- ```
-
- *This will display all draft, future-dated, or expired content, which is not included in your production build.*
-
- If you'd like to develop with the site as it will appear in production, run:
-
- ```
- npm run preview
- ```
-
- ## Production Build
-
- To generate a final production build on your local machine you can run:
-
- ```
- npm run build
- ```
- *The fresh production build of your site will end up in the `dist/` directory.*
-
- # Project Structure
- ```
- .
- โ”œโ”€โ”€ .tmp/ // Temporary directory for development server
- โ”œโ”€โ”€ dist/ // The production build
- โ”œโ”€โ”€ site/ // The Jekyll project, with all content and static files
- | โ”œโ”€โ”€ .forestry/ // Contains Forestry.io configuration files
- | โ”œโ”€โ”€ _data/ // YAML files containing site data
- | โ”œโ”€โ”€ _posts/ // Jekyll's built-in blogging content type
- | โ”œโ”€โ”€ _layouts/ // Your theme layouts
- | โ”œโ”€โ”€ _includes/ // Your theme partials
- | โ”œโ”€โ”€ css/ // Where compiled CSS files live
- | โ”œโ”€โ”€ js/ // Where compiled JS files live
- | โ”œโ”€โ”€ img/ // Where theme images live
- | โ”œโ”€โ”€ uploads/ // Where user uploads are stored
- | โ”œโ”€โ”€ _config.yml // Production configuration settings
- | โ”œโ”€โ”€ _development.yml // Settings for local development only
- | โ”œโ”€โ”€ 404.md // Error page for your site
- | โ””โ”€โ”€ index.md // Homepage of your site
- โ””โ”€โ”€โ”€ src/
- โ”œโ”€โ”€ css // CSS/SCSS source files to be compiled to /css/
- โ””โ”€โ”€ js // JS source files to be compiled to /js/
- ```
-
- # Inline SVG
- Any SVGs found in `src/img/` will be combined into a single SVG Sprite at `site/svg/sprite.symbol.svg`.
-
- This boilerplate comes with a simple include for using SVGs in your layouts. You can select an svg by passing in its ID.
-
- ```
- {% comment %}
- Using a logo stored at src/img/github.svg
- {% endcomment %}
- {% include svg.html id="github" class="optional-class" width="32" height="32" %}
- ```
- **Note: the `class`, `width`, and `height` params are optional**
-
- # Testing
- This boilerplate comes with standard [ESLint](https://eslint.org/) and [StyleLint](https://github.com/stylelint/stylelint) configurations that will lint your CSS and JS for errors or common style issues, which work with most popular IDEs.
-
- The tests can also be run from the command line:
-
- - **JS:** `npm run eslint`
- - **CSS:** `npm run stylelint`
-
- If you want to automatically fix lint errors, you can do this from the command line as well:
-
- - **JS:** `npm run eslint:fix`
- - **CSS:** `npm run stylelint:fix`
-
- # Cleanup
-
- This boilerplate is self-cleaning, and will remove the production `dist/` and development `.tmp/` folders every time a command is run to ensure that their contents are always up to date.
-
- If you wish to manually cleanup, run:
-
- ```
- npm run clean
- ```
-
- # Configuration
- All build tasks are handled by Gulp and are located in `gulpfile.babel.js`. All parts of the build are configurable in discrete files to make management easy.
-
- ## Paths
- All build source and destination paths can be configured from `static-scripts.config.js`.
-
- ## Jekyll
- The build commands for Jekyll can be configured from `stat-cscripts.config.js`. Build commands are set based on the `NODE_ENV` environment variable. You can optionally load different args using the `GENERATOR_ARGS` environment variable.
-
- Four options are available:
- - `default`: the default build commands that are always run
- - `development`: additional build commands for the development server
- - `preview`: additional build commands for a production development server
- - `production`: additional build commands for production builds
-
- ## BrowserSync Development Server
- The configuration for BrowserSync is found in `.browsersyncrc.js`
-
- ## CSS/SASS
- The configuration for PostCSS is found in `.postcssrc.js`
-
- ## Browser support
- Both PostCSS and Webpack use `.browserslistrc` to decide on browser support when compiling.
-
- # Tips & Resources
-
- - To learn about how to develop with Jekyll, see [Jekyll's documentation](https://jekyllrb.com/docs/structure/)
- - To learn how to use Jekyll's templating system, see the [documentation](https://jekyllrb.com/docs/templates/)
- - Static files are any files stored in the `site/` directory *without* front matter.
- - Static files should be stored in the `site/` folder as they should appear in the built site
- *E.g, a CNAME file should be stored at `site/CNAME` to become `/CNAME`*
- - Javascript files are compiled from the root of `src/js/` to `js/{filename}.js`
- - Javascript can be written using ES6, supporting `require()` and `import` statements from npm packages and local JS files
- - CSS files are compiled from the root of `src/css/` to `css/{filename}.css`
- - Import statements are resolved and included in the compiled CSS files
- - For compatibility with Forestry or other CMSs, ensure that compiled CSS and JS files in the `site/` folder are always committed
- - Environment variables are provided to your templates, which can be accessed in templates as follows: `{{ getenv "HUGO_ENV" }}`
- - For development pipelines, this is equal to `development`
- - For production pipelines, this is equal to `production`
- - For Forestry's in-app preview feature, this is equal to `staging`
-
- # Using with Forestry
- This repository comes with basic example content pre-configured to work with Forestry, which you can use to start building your site.
-
- - Fork this repository to your account
- - [Sign up for a Forestry account](https://app.forestry.io/signup), and import this repository as an "Existing Site"
- - When prompted for the "Project root", enter `jekyll`
-
- # Contributing
- All contributions are welcome! Please see our [Code of Conduct](/.git/CODE_OF_CONDUCT.md) & [Support][/.github/SUPPORT.md] guidelines.
-
- ## Licensing
- This boilerplate project is released under the [MIT license](/LICENSE).