# Yeti - HTML + Laravel Template

# File Structure

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

Laravel/
├── public/
│	├── build/
│   │	├── css/
│   │	├── images/
│   │	├── fonts/
│   │	├── js/
│	│	└── ...
│	└── ...
├── resources/
│	├── css/
│	├── images/
│	├── js/
│	├── views/
│	│	├── layouts/
│	│	├── partials/
│	│	└── ...
│	└── ...
├── routes
│	├── web.php
│	└── ...
├── postcss.config.cjs
├── README.md
├── vite.config.js
└── ...

# Installation

# Prerequisites

Please install following prerequisites before setup:

# Setup

Download the package. On Laravel directory:

composer install

This will install all the composer packages.

You will find a file named .env.example, rename the given file name to .env.

php artisan key:generate

This will generate the key.

yarn

This will install all the node packages.

# Builds

You can run the following commands to build for development or production use.

# Development

This will run both astisan serve and vite (recommended).

composer run dev

OR

This will run vite.

yarn dev

# Production

yarn build