https://github.com/nickredmark/streams
Experimental nanoblogging engine / anonymous group chat / outliner built on GUN
https://github.com/nickredmark/streams
Last synced: 3 months ago
JSON representation
Experimental nanoblogging engine / anonymous group chat / outliner built on GUN
- Host: GitHub
- URL: https://github.com/nickredmark/streams
- Owner: nickredmark
- Created: 2019-08-14T14:09:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T09:25:15.000Z (about 4 years ago)
- Last Synced: 2025-03-23T09:48:42.284Z (4 months ago)
- Language: JavaScript
- Homepage: https://streams.nmaro.now.sh/
- Size: 1.33 MB
- Stars: 15
- Watchers: 3
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Streams
## Use locally
### Setup
Create a `.env` file:
```
SERVERS=https://gunjs.herokuapp.com/gun
``````
npm i
```### Start
```
npm run dev
```## Deploy with now
Create a `now.json` file:
```
{
"build": {
"env": {
"SERVERS": "https://gunjs.herokuapp.com/gun"
}
}
}
```Deploy:
```
now
```