CommaFeed
Sources for CommaFeed.com.
Google Reader inspired self-hosted RSS reader, based on Dropwizard and React/TypeScript.
Related open-source projects
Browser extensions:
Deployment on your own server
Docker
Docker images are built automatically and are available at https://hub.docker.com/r/athou/commafeed
Download precompiled package
mkdir commafeed && cd commafeed
wget https://github.com/Athou/commafeed/releases/download/3.0.1/commafeed.jar
wget https://raw.githubusercontent.com/Athou/commafeed/3.0.1/commafeed-server/config.yml.example -O config.yml
vi config.yml
java -Djava.net.preferIPv4Stack=true -jar commafeed.jar server config.yml
The server will listen on http://localhost:8082. The default
user is admin and the default password is admin.
Build from sources
git clone https://github.com/Athou/commafeed.git
cd commafeed
./mvnw clean package
cp commafeed-server/config.yml.example config.yml
vi config.yml
java -Djava.net.preferIPv4Stack=true -jar commafeed-server/target/commafeed.jar server config.yml
The server will listen on http://localhost:8082. The default
user is admin and the default password is admin.
Translation
Files for internationalization are located here.
To add a new language:
- edit
commafeed-client/src/i18n.ts- add the new locale to the
localesarray. - import the dayjs locale
- add the new locale to the
- edit
commafeed-client/.linguircand add the new locale to thelocalesarray. - run
npm run i18nand add translations to the newly createdcommafeed-client/src/locales/[locale]/messages.pofile
The name of the locale should be the two-letters ISO-639-1 language code.
Local development
Backend
- Open
commafeed-serverin your preferred Java IDE.- CommaFeed uses Lombok, you need the Lombok plugin for your IDE.
- If using Eclipse, Go to Window → Preferences → Maven → Annotation Processing and check "Automatically configure JDT APT"
- Start
CommaFeedApplication.javain debug mode withserver config.dev.ymlas arguments
Frontend
- Open
commafeed-clientin your preferred JavaScript IDE. - run
npm install - run
npm run dev - the frontend server is now running at http://localhost:8082 and is proxying REST requests to the backend running on port 8083
Copyright and license
Copyright 2013-2023 CommaFeed.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.