| 1 | # Sequoia |
| 2 | |
| 3 |  |
| 4 | |
| 5 | A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com). |
| 6 | |
| 7 | > [!NOTE] |
| 8 | > [Visit the docs for more info](https://sequoia.pub) |
| 9 | |
| 10 | ## Quickstart |
| 11 | |
| 12 | Install the CLI |
| 13 | |
| 14 | ```bash |
| 15 | pnpm i -g sequoia-cli |
| 16 | ``` |
| 17 | |
| 18 | Authorize |
| 19 | |
| 20 | ```bash |
| 21 | sequoia auth |
| 22 | ``` |
| 23 | |
| 24 | Initialize in your blog repo |
| 25 | |
| 26 | ```bash |
| 27 | sequoia init |
| 28 | ``` |
| 29 | |
| 30 | Publish your posts |
| 31 | |
| 32 | ```bash |
| 33 | sequoia publish |
| 34 | ``` |
| 35 | |
| 36 | Inject link tags for verification (optional) |
| 37 | |
| 38 | ```bash |
| 39 | sequoia inject |
| 40 | ``` |
| 41 | |
| 42 | [Full documentation](https://sequoia.pub) |
| 43 | |
| 44 | ## Local Development |
| 45 | |
| 46 | Make sure [Bun](https://bun.com) is installed |
| 47 | |
| 48 | Clone the git repo and install dependencies |
| 49 | |
| 50 | ```bash |
| 51 | git clone git@tangled.org:stevedylan.dev/sequoia |
| 52 | cd sequoia |
| 53 | bun install |
| 54 | ``` |
| 55 | |
| 56 | Move into `packages/cli` and build/test |
| 57 | |
| 58 | ```bash |
| 59 | cd packages/cli |
| 60 | bun dev |
| 61 | ``` |
| 62 | |
| 63 | ## License |
| 64 | |
| 65 | MIT |
| 66 | |
| 67 | ## Contact |
| 68 | |
| 69 | [ATProto](https://pds.ls/at://stevedylan.dev) |
| 70 | |
| 71 | [Email](mailto:contact@stavedylan.dev) |
| 72 | |
| 73 | <a href="https://ko-fi.com/stevedylandev" target="_blank" rel="noreferrer"> |
| 74 | <img width="200" src="https://files.stevedylan.dev/support_me_on_kofi_dark.png" alt="ko-fi badge" /> |
| 75 | </a> |