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
| /bin/bash -c "$(curl -fsSL https://php.new/install/linux)" | |
| export PATH="/root/.config/herd-lite/bin/:$PATH" | |
| composer install | |
| cp .env.example .env | |
| php artisan key:generate | |
| php artisan migrate --seed --force -n | |
| npm install | |
| npm run build |
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
| #!/usr/bin/env zsh | |
| # Terminal title management for Claude Code | |
| # Place this file in ~/.config/zsh/claude-wrapper.zsh | |
| # Source it in your ~/.zshrc | |
| # | |
| # Source: https://github.com/steipete/agent-rules | |
| # Function to set terminal title | |
| set_terminal_title() { | |
| echo -ne "\033]0;$1\007" |
OlderNewer