Toto repo ma novou cistou historii (1 commit). Predchozi historie byla smazana, protoze obsahovala osobni udaje (IP, emaily, hesla, klice, tokeny, Volume cesty). Soubory v aktualnim commit uz tyto udaje neobsahuji (nahradeno placeholdery <server-ip>, CHANGE_ME, admin@example.com atd.). Pokud chces zpet kompletni seznam starych commitu, mas je ve svem lokalnim working tree - git log --all ukaze prazdno (protoze jsme smazali .git/ a zacali znovu).
44 lines
1.0 KiB
Markdown
44 lines
1.0 KiB
Markdown
# mates-macos-setup
|
||
|
||
macOS workstation setup a Hermes CLI instalace.
|
||
Šablony a konfigurace pro `brew`, `osx-defaults`, `fish` shell a `Hermes` AI agenta.
|
||
|
||
## Struktura
|
||
|
||
```
|
||
Brewfile # Všechny nainstalované CLI/GUI aplikace
|
||
osx-defaults.sh # macOS Finder/Dock/klávesnice defaults
|
||
configure-fish.sh # Fish shell aliasy
|
||
install-hermes.sh # Hermes CLI instalace
|
||
configure-hermes.sh # Hermes konfigurace (API klíč v keychainu)
|
||
hermes-config.example.yml # Ukázková konfigurace
|
||
```
|
||
|
||
## Quickstart (nový Mac)
|
||
|
||
```bash
|
||
# 1. Homebrew
|
||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||
|
||
# 2. Všechny aplikace
|
||
brew bundle --file=Brewfile
|
||
|
||
# 3. macOS defaults
|
||
bash osx-defaults.sh
|
||
|
||
# 4. Fish shell
|
||
bash configure-fish.sh
|
||
|
||
# 5. Hermes
|
||
bash install-hermes.sh
|
||
bash configure-hermes.sh
|
||
```
|
||
|
||
## Detailní návod
|
||
|
||
Viz [README.md](README.md) – co každý skript dělá, bezpečnost, aktualizace.
|
||
|
||
## Licence
|
||
|
||
MIT – viz [LICENSE](LICENSE)
|