Open source and extensible freight brokerage Transportation Management System
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-reqs
Can't find sail
in your path? Add to your bashrc/zshrc
export PATH=./vendor/bin:$PATH
cp .env.example .env
sail up -d
sail artisan migrate
sail npm install
sail artisan key:generate
sail npm run dev
sail artisan dev:refresh
Checkout DEVELOPMENT.md for some frequently ask questions.
If you still have questions, please join our discord for help!