AutoMySQLBackup with a basic configuration will create Daily, Weekly and Monthly backups of one or more of your MySQL databases from one or more of your MySQL servers.
- Ubuntu server
- MySQL
| "postcssSorting.config": { | |
| "order": [ | |
| "custom-properties", | |
| "dollar-variables", | |
| { | |
| "type" : "at-rule", | |
| "name" : "include", | |
| }, | |
| { | |
| "type" : "at-rule", |
| # ---------------------------------------------------------------------------- # | |
| # CI INSTRUCTIONS # | |
| # ~~~~~~~~~~~~~~~ # | |
| # This configuration is optimized for continuous delivery of NPM packages # | |
| # using Lerna (fixed version) + Yarn. # | |
| # ---------------------------------------------------------------------------- # | |
| # # | |
| # 1) Install & initialize Lerna: `yarn add -D lerna && lerna init` # | |
| # # | |
| # # |
| machine: | |
| pre: | |
| - mkdir ~/.yarn-cache | |
| node: | |
| version: stable | |
| dependencies: | |
| pre: | |
| - curl -o- -L https://yarnpkg.com/install.sh | bash | |
| cache_directories: | |
| - ~/.yarn-cache |
| server { | |
| client_body_in_file_only clean; | |
| client_body_buffer_size 32K; | |
| client_max_body_size 300M; | |
| sendfile on; | |
| send_timeout 300s; | |
| # Port that the web server will listen on. | |
| #listen 80; |
| #!/bin/bash | |
| ### BEGIN INIT INFO | |
| # Provides: YOUR_NAME_HERE | |
| # Required-Start: $local_fs $remote_fs $network $syslog $named | |
| # Required-Stop: $local_fs $remote_fs $network $syslog $named | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Start/stop the forever nodejs application | |
| ### END INIT INFO |
| _complete_ssh_hosts () | |
| { | |
| COMPREPLY=() | |
| cur="${COMP_WORDS[COMP_CWORD]}" | |
| comp_ssh_hosts=`cat ~/.ssh/known_hosts | \ | |
| cut -f 1 -d ' ' | \ | |
| sed -e s/,.*//g | \ | |
| grep -v ^# | \ | |
| uniq | \ | |
| grep -v "\[" ; |