···6464# Leaflet specific
6565LEAFLET_APP_PASSWORD=any-password-you-want
66666767-# Feed Service (for publication features, optional)
6868-FEED_SERVICE_URL=http://localhost:3001
6967```
70687169#### Database Migrations
···88868987#### Feed service setup (optional)
90889191-Setup instructions to run a local feed service from a docker container. This step isn't necessary if you're not working on publication or BlueSky integration features.
8989+Setup instructions to run a local feed service. This step isn't necessary if you're not working on publication or BlueSky integration features.
92909393-1. Clone the repo `git clone https://github.com/hyperlink-academy/leaflet-feeds.git`
9494-2. Update your `.env.local` to include the FEED_SERVICE_URL (if not already set): `FEED_SERVICE_URL=http://localhost:3001`
9595-3. Change to the directory and build the docker container `docker build -t leaflet-feeds .`
9696-4. Run the docker container on port 3001 (to avoid conflicts with the main app): `docker run -p 3001:3000 leaflet-feeds`
9191+1. Run `npm run start-feed-service-dev` to start the feed service with hot reloading on `http://localhost:3030`.
97929893#### Troubleshooting
9994