Does it feel like you’re wading through honey to get your news? Save time – use
A dynamic personalized news feed. InComb uses RSS feeds to fetch news, parse them, add them to a Lucene index and display them nicely to the user. The user is able to set his/her news preferences in an intuitive and beautiful interface:
To check out a running version of InComb visit http://incomb.com
If you speak German there is a rather complete technical and user documentation in docs/de
- Pull the docker image from
mbharanya/incomb:latest
, or build it usingdocker/Dockerfile
- Check out
docker-compose.yaml
for setting up the database - Expose the file
incomb_config.json
and a folderindexes
to apply your settings (check docker volumes) - Execute the schema sql
docker exec -i incomb_mysql mysql -uroot -p < src/main/sql/schema.sql
- Execute the data sql
docker exec -i incomb_mysql mysql -uroot -p < src/main/sql/data.sql
- Run
docker-compose
- Check out
localhost:8888
- Create a new MySQL database from the schema in
src/main/sql/schema.sql
- Execute
src/main/sql/data.sql
- Adjust your settings in
WebContent/WEB-INF/conf/incomb_config.json
- Use scripts in the
deploy
folder to run InComb in production
Take a look at the issues page
-
Problem: Categories redirect to a 404
Solution: Recreate categories index (api/indexes/com.incomb.server.categories.indexing.CategoryIndexType)