Skip to content

Commit

Permalink
Some rough docs for making config dirs git repos
Browse files Browse the repository at this point in the history
  • Loading branch information
thaynes43 committed Nov 15, 2024
1 parent 73eb04f commit 8c829b1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"macvlan",
"mqtt",
"multus",
"nvme",
"ollama",
"onedr",
"onepassword",
Expand Down
6 changes: 6 additions & 0 deletions docs/cluster/rook-ceph.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Rook Ceph on Omni

## TODO

Check out command [here](https://github.com/onedr0p/home-ops/commit/8b0af335d9407dfc1e1ddb762b2026a8e3365679#diff-2310e54712275905c8b328fc318d6c38ff5a6bd81e64454db134519ef27312bfR27) that uses MODEL to look up disk instead of /dev/nvme which has been changing around for this cluster.

## WTF

!!! tip Dependencies

- External Secrets (for dashboard)
Expand Down
6 changes: 6 additions & 0 deletions docs/home-automation/backlog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Home Automation Backlog

## HASS

- [Setup Recorder](https://github.com/bjw-s/hass-config/blob/main/config_packages/home-assistant/integrations/recorder.yaml#L11-L16)

4 changes: 3 additions & 1 deletion kubernetes/apps/home-automation/esphome/git-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,16 @@ Just created one using default settings (no .gitignore) [here](https://github.co
## Setup repo in vscode

```bash
git config --global init.defaultBranch main
git init
git config --global --add safe.directory /config
git config --global user.email "thaynes43@gmail.com"
git config --global user.name "Tom Haynes"
git config --local core.sshCommand "/usr/bin/ssh -i /home/coder/.ssh/id_ed25519"
git remote add origin https://github.com/thaynes43/esphome-config.git
git add .
git commti -m "Initial commit"
git push -u origin master
git push -u origin main
```

After this I had to authorize github against a code it gave me and my credentials.
Expand Down

0 comments on commit 8c829b1

Please sign in to comment.