https://github.com/ammezie/real-time-blog
A real-time blog built with Pusher's TextSync and Feeds
https://github.com/ammezie/real-time-blog
Last synced: about 1 month ago
JSON representation
A real-time blog built with Pusher's TextSync and Feeds
- Host: GitHub
- URL: https://github.com/ammezie/real-time-blog
- Owner: ammezie
- Created: 2017-11-22T11:47:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T12:18:19.000Z (over 7 years ago)
- Last Synced: 2025-03-15T01:02:45.019Z (about 2 months ago)
- Language: HTML
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# real-time-blog
A real-time blog built with Pusher's [TextSync](http://docs.pusher.com/textsync) and [Feeds](http://pusher.com/feeds)
## Getting Started
Clone the project repository by running the command below if you use SSH
```bash
git clone [email protected]:ammezie/real-time-blog.git
```If you use https, use this instead
```bash
git clone https://github.com/ammezie/real-time-blog.git
```After cloning, run:
```bash
npm install
```Rename `.env.example` to `.env` and your TextSync and Feeds keys to it:
```txt
TEXT_SYNC_INSTANCE_LOCATOR=YOUR_TEXTSYNC_INSTANCE_LOCATOR
FEEDS_INSTANCE_LOCATOR=YOUR_FEEDS_INSTANCE_LOCATOR
FEEDS_SECRET_KEY=YOUR_FEEDS_SECRET_KEY
```And finally, start the application:
```bash
npm start
```and visit [http://localhost:3000](http://localhost:3000) to see the application in action.