a tool for shared writing and social publishing

update readme desc of feed service

+2 -7
+2 -7
README.md
··· 64 64 # Leaflet specific 65 65 LEAFLET_APP_PASSWORD=any-password-you-want 66 66 67 - # Feed Service (for publication features, optional) 68 - FEED_SERVICE_URL=http://localhost:3001 69 67 ``` 70 68 71 69 #### Database Migrations ··· 88 86 89 87 #### Feed service setup (optional) 90 88 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. 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. 92 90 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` 91 + 1. Run `npm run start-feed-service-dev` to start the feed service with hot reloading on `http://localhost:3030`. 97 92 98 93 #### Troubleshooting 99 94