type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.
You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.
| /* | |
| * SCHEMATIC http://i.imgur.com/plwZbFa.png | |
| * | |
| * Connecting ESP8266 (ESP-12) and Nokia 5110 LCD | |
| * www.KendrickTabi.com | |
| * http://www.kendricktabi.com/2015/08/esp8266-and-nokia-5110-lcd.html | |
| */ | |
| #include <ESP8266WiFi.h> | |
| #include <ArduinoJson.h> |
Picking the right architecture = Picking the right battles + Managing trade-offs
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |