Manage Remote Environment Variables
Download .env from production
gon env:pull
Saves to .env.production locally.
Change a single variable
gon env:set APP_DEBUG=false production
Updates the value on the server and restarts the app automatically.
Edit multiple variables
Pull current config:
gon env:pullEdit locally:
$EDITOR .env.productionPush back and restart:
gon env:push --restart