A CLI for scaffolding ATProto web applications
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

README.md

React + TypeScript + Vite + AT Protocol#

This is a minimal project with just enough to get you going with developing an AT Protocol web application using the public APIs.

Resources#

Getting Started#

You'll need to install some lexicons before starting development. In your terminal, run:

npx @atproto/lex install app.bsky.actor.getProfile

Then generate the TypeScript files. You can change the destination to where these files are generated but remember to update your .gitignore file so you don't commit them.

npx @atproto/lex build --out ./src/__generated__

Next, install the package dependencies:

npm install

Finally, run the development server:

npm run dev