a tool for shared writing and social publishing

update readme desc of feed service

+2 -7
+2 -7
README.md
··· 64 # Leaflet specific 65 LEAFLET_APP_PASSWORD=any-password-you-want 66 67 - # Feed Service (for publication features, optional) 68 - FEED_SERVICE_URL=http://localhost:3001 69 ``` 70 71 #### Database Migrations ··· 88 89 #### Feed service setup (optional) 90 91 - 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. 92 93 - 1. Clone the repo `git clone https://github.com/hyperlink-academy/leaflet-feeds.git` 94 - 2. Update your `.env.local` to include the FEED_SERVICE_URL (if not already set): `FEED_SERVICE_URL=http://localhost:3001` 95 - 3. Change to the directory and build the docker container `docker build -t leaflet-feeds .` 96 - 4. Run the docker container on port 3001 (to avoid conflicts with the main app): `docker run -p 3001:3000 leaflet-feeds` 97 98 #### Troubleshooting 99
··· 64 # Leaflet specific 65 LEAFLET_APP_PASSWORD=any-password-you-want 66 67 ``` 68 69 #### Database Migrations ··· 86 87 #### Feed service setup (optional) 88 89 + Setup instructions to run a local feed service. This step isn't necessary if you're not working on publication or BlueSky integration features. 90 91 + 1. Run `npm run start-feed-service-dev` to start the feed service with hot reloading on `http://localhost:3030`. 92 93 #### Troubleshooting 94