Go to file
keyan 8a9943a1af dark mode for selects 2022-10-26 10:21:35 -05:00
.ebextensions log tor to own file 2022-09-06 12:07:12 -05:00
.github Update FUNDING.yml 2021-09-15 14:25:30 -05:00
.platform add Onion-Location header 2022-07-12 13:18:12 -05:00
.vscode remove vscode settings 2022-06-08 16:56:35 -05:00
api for top users constrain other stats 2022-10-26 09:56:22 -05:00
components Merge branch 'master' of github.com:stackernews/stacker.news 2022-10-25 16:45:36 -05:00
fragments for top users constrain other stats 2022-10-26 09:56:22 -05:00
lib improved top 2022-10-25 16:35:32 -05:00
pages improved top 2022-10-25 16:35:32 -05:00
prisma when NOSATS jobs are given 0 bid, make ACTIVE 2022-10-05 15:11:05 -05:00
public dull title when visited, more distinct visited links 2022-08-31 15:22:25 -05:00
spawn delay capture because font isn't loading 2022-02-03 13:41:09 -06:00
styles dark mode for selects 2022-10-26 10:21:35 -05:00
svgs allow lightning animation to be disabled 2022-10-04 17:34:28 -05:00
worker Created new image for worker, running work script on startup 2022-10-06 15:33:18 -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 improve trust 2022-07-05 14:51:13 -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 check from procfile 2022-01-09 11:57:15 -06:00
README.md Update README.md 2022-04-04 12:21:32 -05:00
docker-compose.yml Created new image for worker, running work script on startup 2022-10-06 15:33:18 -05:00
next.config.js add guide to footer 2022-10-23 10:43:39 -05:00
package-lock.json upgrade ln-service 2022-10-10 19:43:51 -05:00
package.json upgrade ln-service 2022-10-10 19:43: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