7 lines
109 B
Bash
7 lines
109 B
Bash
#!/bin/bash
|
|
set -a
|
|
source .env
|
|
|
|
# you can not run this as root
|
|
xdg-open "${WP_PROTOCOL}://${APP_DOMAIN}"
|
|
exit |