@tinyrack/dotweave 0.39.5 → 0.39.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# Dotweave
|
|
4
|
+
|
|
5
|
+
**Git-backed configuration sync for your development environment.**
|
|
6
|
+
|
|
7
|
+
[](https://github.com/tinyrack-net/dotweave/actions/workflows/ci.yml)
|
|
8
|
+
[](https://www.npmjs.com/package/@tinyrack/dotweave)
|
|
9
|
+
[](https://opensource.org/licenses/MIT)
|
|
10
|
+
[](https://nodejs.org/)
|
|
11
|
+
|
|
12
|
+
[Documentation](https://dotweave.tinyrack.net/en/) · [Getting Started](https://dotweave.tinyrack.net/en/getting-started/) · [한국어](https://dotweave.tinyrack.net/ko/)
|
|
13
|
+
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
Dotweave is a cross-platform CLI that syncs the configuration files in your home directory across multiple devices using git.
|
|
19
|
+
|
|
20
|
+
Most dotfiles tools start from the repository and ask you to shape your local system around it. Dotweave takes the opposite approach — your real config under `HOME` is the source of truth, and the git repository is just the sync artifact.
|
|
21
|
+
|
|
22
|
+
## Features
|
|
23
|
+
|
|
24
|
+
- **Track files and directories** under your home directory
|
|
25
|
+
- **Encrypt secrets** with [age](https://github.com/FiloSottile/age) before storing in the repo
|
|
26
|
+
- **Profiles** for syncing different subsets on different machines
|
|
27
|
+
- **Platform-specific paths** across Windows, macOS, Linux, and WSL
|
|
28
|
+
- **Dry-run previews** for both push and pull directions
|
|
29
|
+
|
|
30
|
+
## Quick Start
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# Install
|
|
34
|
+
npm install -g @tinyrack/dotweave
|
|
35
|
+
|
|
36
|
+
# Initialize
|
|
37
|
+
dotweave init
|
|
38
|
+
|
|
39
|
+
# Track some configs
|
|
40
|
+
dotweave track ~/.gitconfig
|
|
41
|
+
dotweave track ~/.zshrc
|
|
42
|
+
dotweave track ~/.ssh/config --mode secret
|
|
43
|
+
|
|
44
|
+
# Push local state to sync repo
|
|
45
|
+
dotweave push
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Documentation
|
|
49
|
+
|
|
50
|
+
For detailed guides, command reference, and troubleshooting, visit the **[Dotweave documentation site](https://dotweave.tinyrack.net/en/)**.
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
[MIT](LICENSE)
|