The demo for the application is available here
A web application designed to enable the creation of RSS feeds for websites lacking native RSS support.
The app utilizes OpenAI's APIs to automate the analysis of web content, facilitating the generation of RSS feeds. Users can also manually select elements from a website to include in the feed.
Once created, the application provides an Atom RSS feed URL for consumption through the user's preferred RSS reader.
- Elixir
- Phoenix
- TailwindCSS
- PostgreSQL
- Docker
- OpenAI
Clone the repository and navigate to the project directory:
git clone https://github.com/mansour-ahmed/rss_feed_generator
cd rss_feed_generator
If you have Elixir installed, you can run the app directly on your machine.
- Start the PostgreSQL service:
docker-compose up postgres -d
- Install the dependencies:
mix deps.get
- Create and migrate the database:
mix ecto.setup
- Set environment variables:
cp .example.env .env
Now, edit the .env file with the correct values.
- Start the Phoenix server:
source .env && mix phx.server
The app's UI will be accessible at http://localhost:4000
.
The app has 49 tests. To run the tests using Elixir: mix test
.
The app also includes the code quality tools:
- Sobelow: security-focused static analysis.
- Credo: static code quality analysis.
- mix_audit: scan Mix dependencies for security vulnerabilities.
- Dialyxir: to enable Erlang's Dialyzer.
To run all of the above: mix check
.
The app uses a standard Phoenix directory structure. For more details, refer to the Phoenix documentation.
- Path:
/
- Path:
/feeds
- Path:
/feeds/:id
- Path:
/feeds/new
- Path:
/feeds/:id/edit
- Path:
/:id/feed.atom
- Support for JavaScript-Heavy Applications.
- Addition of a daily cron job to update feed content.
- Automatic RSS Feed Detection when website already has an existing RSS feed.
- Extended Feed Fields Support.
- More Advanced Feed Editing Capabilities.
- Improved Validation to Prevent Duplicates
- Security Enhancements for iframes
- User Authentication and Personalization
MIT