A CLI for publishing standard.site documents to ATProto sequoia.pub
standard site lexicon cli publishing
at main 70 lines 947 B view raw view rendered
1# Sequoia 2 3![cover](https://sequoia.pub/og.png) 4 5A 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 12Install the CLI 13 14```bash 15pnpm i -g sequoia-cli 16``` 17 18Authorize 19 20```bash 21sequoia auth 22``` 23 24Initialize in your blog repo 25 26```bash 27sequoia init 28``` 29 30Publish your posts 31 32```bash 33sequoia publish 34``` 35 36Inject link tags for verification (optional) 37 38```bash 39sequoia inject 40``` 41 42[Full documentation](https://sequoia.pub) 43 44## Local Development 45 46Make sure [Bun](https://bun.com) is installed 47 48Clone the git repo and install dependencies 49 50```bash 51git clone git@tangled.org:stevedylan.dev/sequoia 52cd sequoia 53bun install 54``` 55 56Move into `packages/cli` and build/test 57 58```bash 59cd packages/cli 60bun dev 61``` 62 63## License 64 65MIT 66 67## Contact 68 69[ATProto](https://pds.ls/at://stevedylan.dev) 70[Email](mailto:contact@stavedylan.dev)