We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acbff5e commit 4f6974dCopy full SHA for 4f6974d
2 files changed
.gitignore
@@ -30,3 +30,6 @@ learnings/
30
31
# Environment (secrets)
32
.env
33
+
34
+# Stow directory (managed separately)
35
+.stow/
.stow-README.md
@@ -0,0 +1,20 @@
1
+# Private Configuration Repository
2
3
+This repository contains sensitive configuration files that should not be in the main repository.
4
5
+## Files Tracked
6
7
+- `.env.local` - Local environment variables
8
+- `secrets/` - Application secrets
9
+- `config/` - Private configuration files
10
+- `.keys/` - API keys and certificates
11
12
+## Usage
13
14
+This is managed as a bare repository. Use the stow command to interact with it:
15
16
+```bash
17
+stow status
18
+stow add <file>
19
+stow push
20
+```
0 commit comments