All Projects → sinanbozkus → BackupAssistant

sinanbozkus / BackupAssistant

Licence: other
Backup Assistant helps you to backup your files (like database backups or log files) to FTP Server. It works on any platform. ( Windows, Linux and Mac.)

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to BackupAssistant

Nlog.extensions.logging
NLog Provider for Microsoft.Extensions.Logging for .NET Standard libraries and .NET Core applications
Stars: ✭ 323 (+909.38%)
Mutual labels:  netcore, net-core
Dnczeus
DncZeus 是一个基于ASP.NET Core 3 + Vue.js(iview-admin) 的前后端分离的通用后台权限(页面访问、操作按钮控制)管理系统框架。后端使用.NET Core 3 + Entity Framework Core构建,UI则是目前流行的基于Vue.js的iView(iview-admin)。项目实现了前后端的动态权限管理和控制以及基于JWT的用户令牌认证机制,让前后端的交互更流畅。码云镜像:https://gitee.com/rector/DncZeus 。演示地址(demo):
Stars: ✭ 1,104 (+3350%)
Mutual labels:  netcore, net-core
ormdb
ORM tool for .Net / .Net.Core
Stars: ✭ 14 (-56.25%)
Mutual labels:  netcore, net-core
Elmahcore
ELMAH for Net.Standard and Net.Core
Stars: ✭ 127 (+296.88%)
Mutual labels:  netcore, net-core
kube-dump
Backup a Kubernetes cluster as a yaml manifest
Stars: ✭ 142 (+343.75%)
Mutual labels:  backup, backup-tool
butdr
Backup to Cloud( Google Drive, Dropbox ... ) use rclone
Stars: ✭ 49 (+53.13%)
Mutual labels:  backup, backup-tool
Netcore Postgres Oauth Boiler
A basic .NET Core website boilerplate using PostgreSQL for storage, Adminer for db management, Let's Encrypt for SSL certificates and NGINX for routing.
Stars: ✭ 57 (+78.13%)
Mutual labels:  netcore, net-core
Minicover
Cross platform code coverage tool for .NET Core
Stars: ✭ 193 (+503.13%)
Mutual labels:  netcore, net-core
Cqrs Clean Eventual Consistency
CQRS, using Clean Architecture, multiple databases and Eventual Consistency
Stars: ✭ 247 (+671.88%)
Mutual labels:  netcore, net-core
abgleich
zfs sync tool
Stars: ✭ 22 (-31.25%)
Mutual labels:  backup, backup-tool
n3dr
Nexus3 Disaster Recovery (N3DR) is a tool that is capable of downloading all artifacts from a Nexus3 server and to migrate them to another Nexus3 server. Note that some repository formats are not supported at the moment.
Stars: ✭ 110 (+243.75%)
Mutual labels:  backup, backup-tool
Grpc-MicroService
GRPC based Micro-Service Framework (.net core 2.0)
Stars: ✭ 15 (-53.12%)
Mutual labels:  netcore
Tomlet
Zero-Dependency, model-based TOML De/Serializer for .NET
Stars: ✭ 56 (+75%)
Mutual labels:  netcore
Excel2Object
excel convert to .NET Object | Excel与.NET 对象进行转换,支持公式、多Sheet等功能
Stars: ✭ 35 (+9.38%)
Mutual labels:  netcore
raptor
The definitive EasyEngine installer with fully functional backup-restore and SFTP functionalities included
Stars: ✭ 26 (-18.75%)
Mutual labels:  backup
fusionauth-netcore-client
The .NET Core client for FusionAuth
Stars: ✭ 18 (-43.75%)
Mutual labels:  netcore
dotnet-arangodb
.NET Driver for ArangoDB
Stars: ✭ 52 (+62.5%)
Mutual labels:  netcore
auto-mysql-backup
a wrapper for automysqlbackup
Stars: ✭ 19 (-40.62%)
Mutual labels:  backup
serverless-orleans
A demonstration of local development and debugging + serverless Azure deployment of a Dockerized Orleans application.
Stars: ✭ 21 (-34.37%)
Mutual labels:  net-core
jetbrains-utility
Remove/Backup – settings & cli for macOS (OS X) – DataGrip, AppCode, CLion, Gogland, IntelliJ, PhpStorm, PyCharm, Rider, RubyMine, WebStorm
Stars: ✭ 62 (+93.75%)
Mutual labels:  backup

Backup Assistant

Backup Assistant helps you to backup your files (like database backups or log files) to FTP Server. It works on any platform. ( Windows, Linux and Mac.)

This is an alpha release, you have to be careful when backup your files. I'm still working on the program. I'm planing to add more providers (Google Cloud etc.) and write logs soon.

Download: Releases

Sample Configuration (appsettings.json)

{
  "AppSettings": {
    "BackupPaths": [
      {
        "LocalPath": "C:\\Users\\Sinan\\Desktop\\FtpBackup\\TestDb",
        "RemotePath": "TestDb"
      },
      {
        "LocalPath": "C:\\Users\\Sinan\\Desktop\\FtpBackup\\TestHangFireDb",
        "RemotePath": "TestHangFireDb"
      },
      {
        "LocalPath": "C:\\Users\\Sinan\\Desktop\\FtpBackup\\TestLogDb",
        "RemotePath": "TestLogDb"
      }
    ],
    "BackupFileExtensions": [ ".bak" ],
    "DeleteFilesAfterSend": true,
    "ZipFilesBeforeSend": true,
    "DeleteZipFilesAfterSend": false,
    "WriteLog": true,
    "Providers": {
      "FtpServer": {
        "Enabled": true,
        "Host": "ftphost",
        "Port": "21",
        "Username": "ftpusername",
        "Password": "ftppassword"
      }
    }
  }
}
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].