Skip to content

ZeusWPI/gent-nieuws-rss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gent News RSS Feed Generator

https://rss-gent.zeus.gent/feed

This service automatically generates and serves an RSS feed from the Stad Gent news API. It fetches the latest news articles and converts them into a standardized RSS format, making it easy to follow Gent's news updates through any RSS reader.

API Endpoint

The RSS feed is available at:

http://localhost:8080/feed

Docker Instructions

Building the Image

To build the Docker image, run:

docker build -t gent-news-rss .

Running the Container

To run the container:

docker run -p 8080:8080 gent-news-rss

This will:

Running in Background

To run the container in the background:

docker run -d -p 8080:8080 gent-news-rss

Viewing Logs

To view the container logs:

docker logs gent-news-rss

To follow the logs in real-time:

docker logs -f gent-news-rss