Go to file
keyan 69f6f63b9c small manifest changes 2023-07-05 09:33:46 -05:00
.ebextensions log tor to own file 2022-09-06 12:07:12 -05:00
.github Update issue templates 2023-06-23 10:39:37 -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 refine push notification ui and catch promises 2023-07-04 17:19:59 -05:00
components dont show push notifications in nonsupporting browsers 2023-07-04 18:44:03 -05:00
docs Add docs for local LND setup 2023-05-19 18:28:46 -05:00
fragments add top posts/comments to subs 2023-06-12 19:40:18 -05:00
lexical reuse validation on server 2023-02-08 13:39:53 -06:00
lib Service worker rework, Web Target Share API & Web Push API (#324) 2023-07-04 14:36:07 -05:00
pages merge github master 2023-07-04 15:35:04 -05:00
prisma Service worker rework, Web Target Share API & Web Push API (#324) 2023-07-04 14:36:07 -05:00
public small manifest changes 2023-07-05 09:33:46 -05:00
spawn upgrade deps 2022-11-06 11:28:58 -06:00
styles refine cancel button 2023-06-12 14:39:27 -05:00
svgs snl live banner 2023-06-20 09:57:06 -05:00
sw Service worker rework, Web Target Share API & Web Push API (#324) 2023-07-04 14:36:07 -05:00
worker Use node:16.16.0-bullseye for docker images (#341) 2023-07-04 19:49:00 -05:00
.babelrc dark mode with css variables instead 2021-11-09 16:43:56 -06:00
.env.sample Service worker rework, Web Target Share API & Web Push API (#324) 2023-07-04 14:36:07 -05:00
.gitignore merge github master 2023-07-04 15:35:04 -05:00
.npmrc july 4th festivities 2023-07-03 14:46:54 -05:00
.puppeteerrc.cjs puppeteer config 2022-11-16 10:57:03 -06:00
Dockerfile Use node:16.16.0-bullseye for docker images (#341) 2023-07-04 19:49:00 -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 Add docs for local LND setup 2023-05-19 18:28:46 -05:00
docker-compose.yml Use docker volume for db data (#315) 2023-06-12 20:22:10 -05:00
middleware.js referrals 2022-12-19 16:27:52 -06:00
next.config.js Service worker rework, Web Target Share API & Web Push API (#324) 2023-07-04 14:36:07 -05:00
package-lock.json merge github master 2023-07-04 15:35:04 -05:00
package.json merge github master 2023-07-04 15:35:04 -05:00

README.md

contributing

We pay sats for PRs. Sats will be proportional to the impact of the PR. If there's something you'd like to work on, suggest how much you'd do it for on the issue. If there's something you'd like to work on that isn't already an issue, whether its a bug fix or a new feature, create one.

responsible disclosure

If you found a vulnerability, we would greatly appreciate it if you contact us via kk@stacker.news or t.me/k00bideh.

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.

wen decentralization

We're experimenting with providing an SN-like service on nostr in Outer Space. It's our overarching goal to align SN with Bitcoin's ethos yet still make a product the average bitcoiner loves to use.

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. More details here and here. 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 our lightning node. 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.

license

MIT