https://github.com/flug/cloud-backup
https://github.com/flug/cloud-backup
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/flug/cloud-backup
- Owner: flug
- Created: 2016-07-21T09:39:28.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-07T15:14:35.000Z (over 9 years ago)
- Last Synced: 2025-01-29T09:18:22.665Z (over 1 year ago)
- Language: PHP
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Backup your projects and upload on Dropbox
Database supported for the moment ```postgresql```
```yml
instances:
frontend:
database:
user: frontend
password: frontend
host: localhost
port: 5432
name: frontend
directories:
base_path: /home/whoami/workspace/frontend
backup_directories: [my/directory, other/directory]
processor:
compress: zip
ratio: 9
password: "okdaokdaopdpk"
storages: [Dropbox]
cloud_storages:
dropbox_sdk:
access_token: ~
remote_path: " /frontend"
otherinstance:
database:
user: otherinstance
password: otherinstance
host: localhost
port: 5432
name: frontend
directories:
base_path: /home/whoami/workspace/otherinstance
backup_directories: [my/directory, other/directory]
processor:
compress: zip
ratio: 9
password: "okdaokdaopdpk"
storages: [Dropbox]
cloud_storages:
dropbox_sdk:
access_token: ~
remote_path: " /otherinstance"
```
#Build your phar application
[Box2](https://github.com/box-project/box2)
``` composer install --no-dev && box build -v ```