mathsyo/starter-kit

Starter Kit

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Type:project

pkg:composer/mathsyo/starter-kit

v0.0.1 2025-10-06 17:51 UTC

This package is auto-updated.

Last update: 2025-10-06 17:55:42 UTC


README

Latest Version on Packagist Total Downloads

Installation

via Laravel installer

laravel new my-app --using=mathsyo/starter-kit

Via composer

composer create-project mathsyo/starter-kit

Manual installation

# Clone the repository
git clone https://gitlab.deokonai.fr/starter-kit/starter-kit.git
cd starter-kit

# Install PHP dependencies
composer install

# Install Core module
composer require mathsyo/core-module

# Copy environment file and generate app key
cp .env.example .env
php artisan key:generate

# Publish Filament assets
php artisan filament:assets

# Set up the database
php artisan migrate --seed

# Install frontend dependencies
npm install

# Compile assets
npm run build