this repo has no description
at main 73 lines 1.1 kB view raw view rendered
1# Remanso CLI 2 3> [!NOTE] 4> Remanso CLI is a fork from [Sequoia](https://sequoia.pub) made by [Steve Dylan](https://pds.ls/at://stevedylan.dev) 5 6<!-- ![cover](https://sequoia.pub/og.png) --> 7 8A CLI for publishing [Remanso notes](https://remanso.space) alongside [Standard.site](https://standard.site) documents to the [AT Protocol](https://atproto.com). 9 10> [!NOTE] 11> [Visit the docs for more info](https://sequoia.pub) 12 13## Quickstart 14 15Install the CLI 16 17```bash 18pnpm i -g remanso-cli 19``` 20 21Authorize 22 23```bash 24remanso auth 25``` 26 27Initialize in your blog repo 28 29```bash 30remanso init 31``` 32 33Publish your posts 34 35```bash 36remanso publish 37``` 38 39Inject link tags for verification (optional) 40 41```bash 42remanso inject 43``` 44 45[Full documentation](https://sequoia.pub) 46 47## Local Development 48 49Make sure [Bun](https://bun.com) is installed 50 51Clone the git repo and install dependencies 52 53```bash 54git clone git@tangled.org:stevedylan.dev/sequoia 55cd sequoia 56bun install 57``` 58 59Move into `packages/cli` and build/test 60 61```bash 62cd packages/cli 63bun dev 64``` 65 66## License 67 68MIT 69 70## Contact 71 72[ATProto](https://pds.ls/at://stevedylan.dev) 73[Email](mailto:contact@stavedylan.dev)