diff --git a/LICENSE b/LICENSE new file mode 100644 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Steve Simkins + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -1,15 +1,70 @@ -# at-publisher +# Sequoia -To install dependencies: +![cover](https://sequoia.pub/og.png) + +A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com). + +> [!NOTE] +> [Visit the docs for more info](https://sequoia.pub) + +## Quickstart + +Install the CLI ```bash +pnpm i -g sequoia-cli +``` + +Authorize + +```bash +sequoia auth +``` + +Initialize in your blog repo + +```bash +sequoia init +``` + +Publish your posts + +```bash +sequoia publish +``` + +Inject link tags for verification (optional) + +```bash +sequoia inject +``` + +[Full documentation](https://sequoia.pub) + +## Local Development + +Make sure [Bun](https://bun.com) is installed + +Clone the git repo and install dependencies + +```bash +git clone git@tangled.org:stevedylan.dev/sequoia +cd sequoia bun install ``` -To run: +Move into `packages/cli` and build/test ```bash -bun run index.ts +cd packages/cli +bun dev ``` -This project was created using `bun init` in bun v1.3.5. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime. +## License + +MIT + +## Contact + +[ATProto](https://pds.ls/at://stevedylan.dev) +[Email](mailto:contact@stavedylan.dev) diff --git a/packages/cli/README.md b/packages/cli/README.md --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -1,3 +1,70 @@ # Sequoia -A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com). +![cover](https://sequoia.pub/og.png) + +A CLI for publishing [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com). + +> [!NOTE] +> [Visit the docs for more info](https://sequoia.pub) + +## Quickstart + +Install the CLI + +```bash +pnpm i -g sequoia-cli +``` + +Authorize + +```bash +sequoia auth +``` + +Initialize in your blog repo + +```bash +sequoia init +``` + +Publish your posts + +```bash +sequoia publish +``` + +Inject link tags for verification (optional) + +```bash +sequoia inject +``` + +[Full documentation](https://sequoia.pub) + +## Local Development + +Make sure [Bun](https://bun.com) is installed + +Clone the git repo and install dependencies + +```bash +git clone git@tangled.org:stevedylan.dev/sequoia +cd sequoia +bun install +``` + +Move into `packages/cli` and build/test + +```bash +cd packages/cli +bun dev +``` + +## License + +MIT + +## Contact + +[ATProto](https://pds.ls/at://stevedylan.dev) +[Email](mailto:contact@stavedylan.dev)