A web-based feed aggegator to aggregate various blogs written by folks at OSDC
Fork and Clone the repository.
# Install deps
yarn
# Run development server
yarn dev
Open http://localhost:3000 with your browser to see the result.
Head to `gaia.config.js and append your detailes like
export default [
...
},
+ {
+ title: "title of your blog",
+ feed: "link to your rss feed"
+ },
];
Run yarn build && yarn start
to check if everything's running fine
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.