Scratch space for learning atproto app development
1# AT Protocol "Statusphere" Example App 2 3An example application covering: 4 5- Signin via OAuth 6- Fetch information about users (profiles) 7- Listen to the network firehose for new data 8- Publish data on the user's account using a custom schema 9 10See https://atproto.com/guides/applications for a guide through the codebase. 11 12## Getting Started 13 14```sh 15git clone https://github.com/bluesky-social/statusphere-example-app.git 16cd statusphere-example-app 17cp .env.template .env 18npm install 19npm run dev 20# Navigate to http://localhost:8080 21```