Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daemon1024/gaia
blog feed aggregator
https://github.com/daemon1024/gaia
blog nextjs osdc planet rss rss-aggregator
Last synced: about 2 months ago
JSON representation
blog feed aggregator
- Host: GitHub
- URL: https://github.com/daemon1024/gaia
- Owner: daemon1024
- License: gpl-3.0
- Created: 2021-01-18T13:30:11.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-18T16:55:46.000Z (about 4 years ago)
- Last Synced: 2024-10-15T10:42:24.127Z (3 months ago)
- Topics: blog, nextjs, osdc, planet, rss, rss-aggregator
- Language: JavaScript
- Homepage: https://gaia.daemon1024.vercel.app/
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gaia
A web-based feed aggegator to aggregate various blogs written by folks at [OSDC](https://osdc.netlify.app/)
## Setup
Fork and Clone the repository.
```bash
# Install deps
yarn# Run development server
yarn dev```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
## Add your feed
Head to [`gaia.config.js](./gaia.config.js) and append your detailes like
```diff
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
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.