this repo has no description
0
fork

Configure Feed

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

bug: typo in app.bsky.feed.generator example (#2)

authored by

Tom Sherman and committed by
GitHub
50258812 8f2ab965

+2 -3
+2 -3
docs/publish-feed.md
··· 10 10 { 11 11 "$type": "app.bsky.feed.generator", 12 12 "did": "did:web:the_hostname", 13 - "display_name": "Feed A", 13 + "displayName": "Feed A", 14 14 "description": "A useful feed.", 15 - "created_at": "2024-10-30T16:15:31Z" 15 + "createdAt": "2024-10-30T16:15:31Z" 16 16 } 17 17 ``` 18 18 ··· 25 25 1. Create a new virtual environment to run the script in: `python -m venv ./venv/` 26 26 2. Install the atproto library in the virtual environment: `./venv/bin/pip install atproto` 27 27 3. Invoke the script using the virtual environment: `./venv/bin/python ./etc/publish.py --help` 28 -