Post-Setup Guide
Follow these steps to start developing after running the install script.
1
Refresh Environment
Your bash profile has been updated with new paths for NVM, Bun, and Composer. Refresh your current session:
source ~/.bashrc
2
Database Access
Native AuthThe script creates a MySQL user matching your Linux username. You can log in using your Linux password:
mysql -u $(whoami) -p
Note: phpMyAdmin is available at http://localhost/phpmyadmin with automatic login enabled for development convenience.
3
Modern Tooling
Your environment is pre-loaded with the latest development tools:
- • Bun: Fast JS runtime (run
bun --version) - • GH CLI: Authenticate GitHub via
gh auth login - • Laravel: Global installer ready via
laravel new app-name