under Devops
Here's a quick copy/paste snippet you can use to create a reverse proxy server in Cloudflare.
under Devops
GitHub has a set of pre-installed packages with the default containers it provides. Learn how you can override the default PHP version.
under Devops
Here's a one line command you can use to copy a Heroku Postgres database backup to a database in another environment.
under Devops
Here's my review of Netlify Dev after a few hours of using it.
under Devops
This article assumes you have the Heroku CLI installed and setup.
Using the Heroku CLI you can copy all of the config variables out of a project into a local file:
1heroku config -s -a {PROJECT_NAME} > config.txt
You can also do the opposite, push config values into a Heroku project:
1cat config.txt | tr '\n' ' ' | xargs heroku config:set -a {PROJECT}
Hopefully you found this article useful! If you did, share it on Twitter!
Found an issue with the article? Submit your edits against the repository.