-
-
Save RichStone/ed9877fdd5668421dfbf876d989c10e7 to your computer and use it in GitHub Desktop.
`make start-all-overmind` hacked out
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 | |
| # Check if cloudflared is running | |
| if ! pgrep -f "cloudflared tunnel"; then | |
| cloudflared tunnel --loglevel debug run --url http://localhost:5010 richsteinmetzlocaldev & | |
| else | |
| echo "cloudflared is already running." | |
| fi | |
| # Check if webpacker-start is running | |
| if ! pgrep -f "webpacker-start"; then | |
| make webpacker-start & | |
| else | |
| echo "webpacker-start is already running." | |
| fi | |
| # Start all overmind | |
| make web-start-overmind |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment