Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srid/slownews
🐢 Bringing slow news for the nervous among us
https://github.com/srid/slownews
hackernews haskell obelisk reddit reflex reflex-frp
Last synced: 9 days ago
JSON representation
🐢 Bringing slow news for the nervous among us
- Host: GitHub
- URL: https://github.com/srid/slownews
- Owner: srid
- License: bsd-3-clause
- Created: 2015-09-05T21:50:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T02:25:32.000Z (about 4 years ago)
- Last Synced: 2024-10-11T23:49:37.989Z (25 days ago)
- Topics: hackernews, haskell, obelisk, reddit, reflex, reflex-frp
- Language: Haskell
- Homepage: https://slownews.srid.ca
- Size: 1.48 MB
- Stars: 112
- Watchers: 8
- Forks: 11
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# slownews
A web app that aggregates top news during the last week from sites like reddit, Lobste.rs and Hacker News. Written in **Haskell** and using **Reflex** FRP (via [Obelisk](https://github.com/obsidiansystems/obelisk)).
## Running locally
Install [obelisk](https://github.com/obsidiansystems/obelisk) and run:
```
ob run
```Visit http://localhost:8000/
## Deploying
To deploy to a remote (NixOS) server, use `ob deploy` (see Obelisk docs for details).
To create a release for running locally, run:
```
nix-build -A exe
```and then to run that:
```
(cd result && ./backend -p 3001)
```