norns: development setup

Опубликовано: 18 Май 2026
на канале: Tyler Etters
2,276
like

quick demo of how to use a text editor and terminal with ssh/sshfs to develop from macos. some code follows. note there may be a couple setup steps for your first time using ssh or sshfs. answers and instructions are readily available online.

put this in ~/.config/ssh on macos
```
Host norns
Hostname norns.local
User we
```
now you can use `ssh norns`.

put this in ~/.bashrc or ~/.zshrc
```
alias norns="cd ~ && sshfs we@norns:/home/we norns"
```
now you can quickly mount norns with `norns`.

put these lines in `/home/we/.bashrc` on norns
```
alias stopn="~/norns/stop.sh"
alias startn="~/norns/start.sh"
alias maiden="/home/we/norns/build/maiden-repl/maiden-repl"
```
now you can restart norns and launch matron quickly.