Go to file
keyan 0ad886ffc0 constrain invoice quantity and amount 2022-08-30 15:33:39 -05:00
.ebextensions
.github
.platform add Onion-Location header 2022-07-12 13:18:12 -05:00
.vscode
api constrain invoice quantity and amount 2022-08-30 15:33:39 -05:00
components add link to recent/comments 2022-08-23 17:34:51 -05:00
fragments full powered editing 2022-08-18 13:15:24 -05:00
lib full powered editing 2022-08-18 13:15:24 -05:00
pages constrain invoice quantity and amount 2022-08-30 15:33:39 -05:00
prisma constrain invoice quantity and amount 2022-08-30 15:33:39 -05:00
public job board enhancements 2022-07-21 17:55:05 -05:00
spawn
styles fix notification spacing 2022-08-18 14:19:01 -05:00
svgs add polls 2022-07-30 08:51:04 -05:00
worker fix bad earn link it satistics 2022-08-18 15:57:48 -05:00
.babelrc
.env.sample
.gitignore
.npmrc
Dockerfile
LICENSE
Procfile
README.md
docker-compose.yml
next.config.js
package-lock.json linkable headers 2022-07-17 10:35:50 -05:00
package.json add link to recent/comments 2022-08-23 17:34:51 -05: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 begin decentralizing 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. The job queue is also maintained in postgresql. 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. the worker, which dequeues jobs sent to it by the web app, e.g. polling lnd for invoice/payment status

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