Go to file
keyan 23a9c76e52 fix build id issue 2023-06-01 15:03:13 -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 remove extra note checking condition 2023-06-01 14:54:44 -05:00
components only request notification permissions on the notifications page 2023-06-01 14:41:20 -05:00
docs Add docs for local LND setup 2023-05-19 18:28:46 -05:00
fragments Add thread subscriptions (#293) 2023-05-31 19:44:06 -05:00
lexical reuse validation on server 2023-02-08 13:39:53 -06:00
lib Fix ensureProtocol not trimming whitespace 2023-05-21 12:48:30 -05:00
pages Use fallback instead of 500 if callback malformed (#296) 2023-05-31 19:48:14 -05:00
prisma Add thread subscriptions (#293) 2023-05-31 19:44:06 -05:00
public Use PWA with display: standalone (#292) 2023-05-31 17:28:33 -05:00
spawn upgrade deps 2022-11-06 11:28:58 -06:00
styles enhancements for footer version with prod support 2023-06-01 12:57:31 -05:00
svgs add amboss link in footer 2023-05-05 16:22:22 -05:00
sw Use PWA with display: standalone (#292) 2023-05-31 17:28:33 -05:00
worker rank views 2023-05-23 09:21:04 -05:00
.babelrc dark mode with css variables instead 2021-11-09 16:43:56 -06:00
.env.sample enhancements for footer version with prod support 2023-06-01 12:57:31 -05:00
.gitattributes git attr version on archive/deploy 2023-06-01 11:21:42 -05:00
.gitignore Use PWA with display: standalone (#292) 2023-05-31 17:28:33 -05:00
.npmrc unsafe perm test 2021-06-04 19:54:03 -04:00
.puppeteerrc.cjs puppeteer config 2022-11-16 10:57:03 -06:00
Dockerfile upgrade debian vers 2023-04-26 13:02:42 -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 replace docker wait-for-it with long form of depends on 2023-04-26 13:02:42 -05:00
middleware.js referrals 2022-12-19 16:27:52 -06:00
next.config.js fix build id issue 2023-06-01 15:03:13 -05:00
package-lock.json Use PWA with display: standalone (#292) 2023-05-31 17:28:33 -05:00
package.json Use PWA with display: standalone (#292) 2023-05-31 17:28:33 -05:00
version.txt git attr version on archive/deploy 2023-06-01 11:21:42 -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