Created
March 28, 2017 17:45
-
-
Save jkudish/5f66f163b43d20384e9213807073d9f3 to your computer and use it in GitHub Desktop.
How I run dusk on Codeship
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
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