Skip to content
On this page

Getting Started

Installation

Prerequisites

  • Composer
  • Docker
  • Node.js if not using Docker
  • It is recommended to set up aliases for ./deveops -> dev and ./vendor/bin/sail -> sail

Clone Statix project from GitHub.

sh
$ git clone git@github.com:convidera/statix.git

Setup

A devops script handles the setup process for you. This will install all dependencies, Laravel Sail as Docker environment, npm dependencies, generates the application key.

sh
$ ./devops setup
Check README.md in the GitHub project for hints.

Start and Stop Application

sh
$ ./devops up
sh
$ ./devops up -d
sh
$ php artisan serve
sh
$ ./devops down
sh
$ strg + c

Build and Watch Frontend

sh
$ ./vendor/bin/sail watch
sh
$ npm run watch

Released under the MIT License.