All Projects â†’ ulver2812 â†’ aws-s3-backup

ulver2812 / aws-s3-backup

Licence: MIT license
This app allows you to use AWS (Amazon Web Services) S3 as backup system for desktop environments. 🚀

Programming Languages

typescript
32286 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to aws-s3-backup

virtnbdbackup
Backup utiliy for Libvirt / qemu / kvm supporting incremental and differencial backups.
Stars: ✭ 62 (-7.46%)
Mutual labels:  backup-solution, backup-script, backup-manager, backup-utility
s3-mongo-backup
Mongodb backups to S3
Stars: ✭ 18 (-73.13%)
Mutual labels:  aws-s3, backup-script
qikQR
minimal desktop app to create QR codes.
Stars: ✭ 20 (-70.15%)
Mutual labels:  electron-app
mead
Mead - Dead simple markdown editor for Windows, Linux and Mac
Stars: ✭ 20 (-70.15%)
Mutual labels:  electron-app
flask-drive
A simple Flask app to upload and download files off Amazon's S3
Stars: ✭ 23 (-65.67%)
Mutual labels:  aws-s3
KeystrokeCount
MacOS app that gives insights on your keystrokes
Stars: ✭ 42 (-37.31%)
Mutual labels:  electron-app
SteamTradeBot
Open source steam trading bot. Accepting or declining trades based on the automatic value calculation.
Stars: ✭ 65 (-2.99%)
Mutual labels:  electron-app
linux-android-backup
Back up your device without vendor lock-ins, using insecure software or root. Supports encryption and compression out of the box. Works cross-platform.
Stars: ✭ 119 (+77.61%)
Mutual labels:  backup-script
electron-application
Example implementation of electronjs.
Stars: ✭ 11 (-83.58%)
Mutual labels:  electron-app
aws-backup-lambda
A utility AWS lambda function to manage EBS and RDS snapshot backups.
Stars: ✭ 60 (-10.45%)
Mutual labels:  backup-utility
short-touch
Application to easily generate short cut buttons on MacBooks with the touch bar.
Stars: ✭ 12 (-82.09%)
Mutual labels:  electron-app
cloud-integration
Spark cloud integration: tests, cloud committers and more
Stars: ✭ 20 (-70.15%)
Mutual labels:  aws-s3
s3-edit
Edit directly a file on Amazon S3 in CLI
Stars: ✭ 69 (+2.99%)
Mutual labels:  aws-s3
google translate desktop
Unofficial Google Translate Desktop Mac App
Stars: ✭ 15 (-77.61%)
Mutual labels:  electron-app
Potion
A Personalized Notion
Stars: ✭ 13 (-80.6%)
Mutual labels:  electron-app
Bucket-Flaws
Bucket Flaws ( S3 Bucket Mass Scanner ): A Simple Lightweight Script to Check for Common S3 Bucket Misconfigurations
Stars: ✭ 43 (-35.82%)
Mutual labels:  aws-s3
vpsbackup
VPS Backup Script
Stars: ✭ 15 (-77.61%)
Mutual labels:  backup-script
spiced-final-project
Career explorer platform developed in React.js in 6 days.
Stars: ✭ 14 (-79.1%)
Mutual labels:  aws-s3
minio-boshrelease
MinIO release for http://bosh.io/
Stars: ✭ 31 (-53.73%)
Mutual labels:  aws-s3
aws-maven-plugin
Deploys resources to AWS using maven
Stars: ✭ 25 (-62.69%)
Mutual labels:  aws-s3

AWS S3 Backup
Backup on AWS S3 ? Never been so easy!

PR MIT Tested on Win 10

Introduction

This app allows you to use AWS (Amazon Web Services) S3 as backup system for desktop environments. Like Dropbox or Google Drive app you can backup your important data on AWS S3. This desktop app allows you to configure 3 different types of backup job (One time, recurring, live) to backup your data in an S3 bucket.

  • One time: the backup job will be executed only one time as programmed.
  • Recurring: the backup job will be executed periodically as programmed.
  • Live: any time a file associated with the backup job changes it will be transferred to the S3 bucket.

This is a cross platform app, built with Electron, so you can use it on Windows, Mac and Linux.

Requirement

This app use the AWS CLI "sync" command, this mean that you must install the AWS CLI in order to use this app.

You can find the AWS CLI installer here: Download AWS CLI

APP Settings

After installation go to settings page and configure the AWS credentials.

In order to use the app you must set an "AWS access key ID", an "AWS secret access key" and an "AWS Region" that you can create through the IAM service in the AWS console. The IAM user needs a programmatic access account with a correct read/write S3 policy attached (e.g AmazonS3FullAccess) and CloudWatch Metrics (e.g CloudWatchReadOnlyAccess). You can use any IAM S3 policy that grant access to the buckets that you want to use with the app. Here an example policy: IAM S3 example policy

Wiki

A complete and detailed documentation can be found here: https://github.com/ulver2812/aws-s3-backup/wiki

Windows executable (portable and installer)

Download here

Changelog

Check changelog

Getting Started

Clone this repository locally :

git clone https://github.com/ulver2812/aws-s3-backup.git

Install dependencies with npm :

npm install

To build for development

  • in a terminal window -> npm start

This start a local development environment with hot reload

You can activate/deactivate "Developer Tools" by commenting or not win.webContents.openDevTools(); in main.ts.

To build for production

  • in a windows terminal window -> npm electron:windows
  • in a mac terminal window -> npm electron:mac
  • in a linux terminal window -> npm electron:linux

You will find the app build files in the "app-builds" directory.

Don't forget to deactivate the "Developer Tools" by commenting win.webContents.openDevTools(); in main.ts.

Included Commands

Command Description
npm run ng:serve:web Execute the app in the browser
npm run build Build the app. Your built files are in the /dist folder.
npm run build:prod Build the app with Angular aot. Your built files are in the /dist folder.
npm run electron:local Builds your application and start electron
npm run electron:linux Builds your application and creates an app consumable on linux system
npm run electron:windows On a Windows OS, builds your application and creates an app consumable in windows 32/64 bit systems
npm run electron:mac On a MAC OS, builds your application and generates a .app file of your application that can be run on Mac
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].