Go to file
keyan 49a246e929 different icon for tipping 2021-11-17 16:54:00 -06:00
.ebextensions install epel before chromium 2021-07-11 18:51:13 -05:00
.github Update FUNDING.yml 2021-09-15 14:25:30 -05:00
.platform override nginx.conf so we can use gzip 2021-10-06 20:39:51 -07:00
.vscode working comments with cache updates 2021-04-17 13:15:18 -05:00
api add dark mode 2021-11-04 19:07:41 -04:00
components different icon for tipping 2021-11-17 16:54:00 -06:00
fragments lnurl-withdrawal support 2021-10-28 14:59:53 -05:00
lib smarter use of SSR and caching 2021-10-26 15:49:37 -05:00
pages don't load dark mode as a module 2021-11-16 14:55:40 -06:00
prisma fix tipping before upvoting causing boost bug 2021-11-11 14:27:29 -06:00
public don't load dark mode as a module 2021-11-16 14:55:40 -06:00
spawn move website capture to a spawned process 2021-10-22 17:21:38 -05:00
styles many small design enhancements 2021-11-12 16:39:52 -06:00
svgs different icon for tipping 2021-11-17 16:54:00 -06:00
walletd fix crashes and report which object failed in walletd 2021-08-12 16:21:56 -05:00
.babelrc dark mode with css variables instead 2021-11-09 16:43:56 -06:00
.env.sample fix invites 2021-11-11 11:38:41 -06:00
.gitignore dockerize dev env 2021-10-20 14:57:11 -05:00
.npmrc unsafe perm test 2021-06-04 19:54:03 -04:00
Dockerfile dockerize dev env 2021-10-20 14:57:11 -05:00
LICENSE add license 2021-06-28 18:28:26 -05:00
Procfile remove tls trace from walletd 2021-06-11 13:52:07 -05:00
README.md update README 2021-11-04 19:13:46 -04:00
docker-compose.yml sort by top posts 2021-10-21 17:05:06 -05:00
next.config.js mess with cache etc 2021-10-25 14:49:46 -05:00
package-lock.json add progress bar and fix reply padding 2021-11-13 07:28:08 -06:00
package.json add progress bar and fix reply padding 2021-11-13 07:28:08 -06:00

README.md

stacker.news

Stacker News is like Hacker News but we pay you Bitcoin. We use Bitcoin and the Lightning Network to provide Sybil resistance and any karma earned is withdrawable as Bitcoin. Next year we plan to decentralize SN on an open peer to peer network.

local development

  1. Install docker-compose and deps if you don't already have it installed
  2. git clone git@github.com:stackernews/stacker.news.git sn && cd sn
  3. docker-compose up --build

You should then be able to access the site at localhost:3000 and any changes you make will hot reload. If you want to login locally or use lnd you'll need to modify .env.sample appropriately. If you have trouble please open an issue so I can help and update the README for everyone else.

stack

The site is written in javascript using Next.js, a React framework. The backend API is provided via graphql. The database is postgresql modelled with prisma. We use lnd for the lightning node which we connect to through a tor http tunnel. A customized Bootstrap theme is used for styling.

processes

There are two. 1. the web app and 2. walletd, which checks and polls lnd for all pending invoice/withdrawal statuses in case the web process dies.

wallet transaction safety

To ensure user balances are kept sane, all wallet updates are run in serializable transactions at the database level. Because prisma has relatively poor support for transactions all wallet touching code is written in plpgsql stored procedures and can be found in the prisma/migrations folder.

code

The code is linted with standardjs.

contributing

Pull requests are welcome. Please submit feature requests and bug reports through issues.

license

MIT