Created
August 10, 2023 09:19
-
-
Save smitmartijn/e97822bbd1745e99c56bc20bfafe3cb4 to your computer and use it in GitHub Desktop.
Run a Laravel app in a tiled tmux window with a single command.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# brew install tmuxp | |
# tmuxp load tmuxp.yaml | |
session_name: laravel-app | |
windows: | |
- window_name: laravel-app | |
layout: tiled | |
panes: | |
- docker-compose -f docker-compose.yml up | |
- php artisan serve | |
- npm run dev | |
- php artisan horizon | |
- tail -f storage/logs/laravel.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment