https://github.com/sameerkumar18/sameerkumar_blog
https://github.com/sameerkumar18/sameerkumar_blog
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sameerkumar18/sameerkumar_blog
- Owner: sameerkumar18
- Created: 2019-05-15T20:37:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-16T07:15:57.000Z (over 6 years ago)
- Last Synced: 2025-03-27T22:54:43.629Z (10 months ago)
- Language: JavaScript
- Homepage: https://blog.sameerkumar.website
- Size: 77.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Medium Export
An example of how easy it can be to generate a site based on an RSS feed. In this instance focussed on Medium's RSS Feeds
## Quick start
You can get your own version of this site by just clicking the button below, and then providing a suitable Medium RSS feed URL.
[](https://app.netlify.com/start/deploy?repository=https://github.com/philhawksworth/medium-export)
### What will clicking that button do?
Fair question. After clicking the button, [Netlify](https://www.netlify.com) will ask for your permission to clone this repo into your own GitHub account, and then create a new site for you in Netlify linked to that repo. It will also ask for a feed to ingest at build time (see below if for some to pinch if you need to).
Then it will build and deploy a new site for you, complete with hosting and continuous deployment all configured.
The whole thing should take less than a minute!
### Medium RSS Linkspiration:
- https://medium.com/feed/netlify
- https://medium.com/feed/memory-leak
- https://medium.com/feed/@philhawksworth
- https://medium.com/feed/@addyosmani
- https://m.signalvnoise.com/feed
## Local development
This site is built with [Eleventy](https://11ty.io) and have very few prerequisites:
- Node
- Npm or Yarn
### Install and bootstrap
```bash
# clone this repository (or do that via the button above)
git clone git@github.com:philhawksworth/medium-export.git
# move into the working directory and install dependencies
cd medium-export
yarn
# generate and serve the site while watching for changes
yarn start
# build the site
yarn run build
```