KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
crestic
★ 119
Open GitHub ↗
Configurable Restic Wrapper
Download README (.md)
Explore Similar Repositories
litefy
:
a lightweight spotify client
smix-eleventy-starter
:
A standards-respecting starter kit for Eleventy. Go Indie.
deep_autoviml
:
Build tensorflow keras model pipelines in a single line of code. Now with mlflow tracking. Created by Ram Seshadri. Collaborators welcome. Permission granted upon request.
fastify-schedule
:
Fastify plugin for scheduling periodic jobs
fastify-sse-v2
:
Provide Server-Sent Events to Fastify
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
crestic
?
Download (.md)
Crestic - configurable Restic ============================= This is a slim configuration wrapper for [Restic](https://restic.readthedocs.io/), a pretty awesome backup tool. Why? [Because restic is unfortunately still missing config files](https://github.com/restic/restic/issues/16). Usage ----- The goal of `crestic` is to make running `restic` easy, e.g. creating backups using ```Shell crestic home backup ``` instead of running complex `restic` commands ```Shell restic backup \ --repo sftp:your_server:my_computer.restic \ --password-file ~/.config/restic/password \ --exclude-file ~/.config/restic/excludes \ ~ ``` To achieve this, this tool does not try to be clever, it simply maps any *commandline options* for `restic` to a *key in an config file*: ```INI [home] repo: sftp:your_server:my_computer.restic password-file: ~/.config/restic/password [home.backup] exclude-file: ~/.config/restic/excludes _arguments: ~ ``` More advanced usage examples can be found [in the docs](https://nils-werner.github.io/crestic/)