The Open Source Transportation Management System for Freight Brokers
Laravel + Inertia.js + React
A local environment can be setup quickly using Laravel Sail and our docker configurations.
Standing up the development environment after cloning the repository should follow these steps:
Setup Laravel Sail
docker run --rm \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/var/www/html" \
-w /var/www/html \
laravelsail/php84-composer:latest \
composer install --ignore-platform-reqsCan't find sail in your path? Add to your bashrc/zshrc
export PATH=./vendor/bin:$PATHcp .env.example .envsail up -dsail artisan migratesail npm installsail artisan key:generatesail npm run devsail artisan dev:refreshCheckout DEVELOPMENT.md for some frequently ask questions.
If you still have questions, please join our discord for help!