Skip to content

Instantly share code, notes, and snippets.

@jkudish
Created March 28, 2017 17:45
Show Gist options
  • Save jkudish/5f66f163b43d20384e9213807073d9f3 to your computer and use it in GitHub Desktop.
Save jkudish/5f66f163b43d20384e9213807073d9f3 to your computer and use it in GitHub Desktop.
How I run dusk on Codeship
export DUSK_START_CHROMEDRIVER=false
export DUSK_APP_PORT=8000
export DUSK_CHROME_BINARY=/usr/bin/chromium-browser
nohup bash -c "./vendor/laravel/dusk/bin/chromedriver-linux 2>&1 &"
nohup bash -c "php artisan serve --env=dusk.testing 2>&1 &" && sleep 4
php artisan dusk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment