/bin/bash -c "$(curl -fsSL https://php.new/install/mac/8.4)"
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://php.new/install/windows/8.4'))
composer global require laravel/installer
composer install
npm install
Server
php artisan serve
Client
npm run dev
Make sure to update SESSION_DRIVER to mongodb in the .env file.
SESSION_DRIVER=mongodb
When using Firebase Authentication with email links, you need to configure authorized domains in Firebase. This allows specific domains to complete the sign-in process.
- Go to the Firebase Console
- Select your project
- Navigate to Authentication > Settings
- Scroll to "Authorized domains" section
- Click "Add domain"
For a typical setup, you'll want to whitelist:
localhost
127.0.0.1
your-app.vercel.app
- Any other domains your app uses
- No code changes are needed - this is purely a Firebase Console configuration
- The authentication error occurs when domains aren't properly whitelisted
- Make sure to add all domains for each environment (development, staging, production)
To generate types for models, run the following command:
php artisan generate:types