# File Structure

Within the download you'll find the following directory and file structure:

Site/
├── README.md
├── dist/ (Production Version)
│	├── assets/
│	│	├── css/
│	│	├── images/
│	│	├── fonts/
│	│	└── js/
│	├── index.html
│	└── ...
├── src/ (Development Version)
│	├── assets/
│	│	├── css/
│	│	├── images/
│	│	└── js/
│	├── partials/
│	│	├── _header.html
│	│	├── _footer.html
│	│	├── _navigation.html
│	│	└── ...
│	├── index.html
│	└── ...
├── package.json
├── tailwind.config.js
├── gulpfile.js
├── yarn.lock
└── ...

# Installation

We are using gulp which allows to have complete automation for build flow.

# Prerequisites

Please install following prerequisites before setup:

# Setup

Download the package. On Site directory:

yarn

This will install all the node packages.

# Builds

You can run the following commands to build for development or production use. These commands outputs to dist directory.

# Development

yarn dev

# Production

yarn build