Go to file
keyan 4bd489a36a mutes 2023-09-28 15:02:25 -05:00
.ebextensions add lb based scaling health check 2023-08-02 21:33:53 -05:00
.github Eslint setup and github action (#360) 2023-08-07 18:43:15 -05:00
.platform Remove Content-Length header for requests to /api/lnauth (#413) 2023-08-15 12:52:56 -05:00
.vscode remove vscode settings 2022-06-08 16:56:35 -05:00
api mutes 2023-09-28 15:02:25 -05:00
components mutes 2023-09-28 15:02:25 -05:00
docs Add docs for local LND setup 2023-05-19 18:28:46 -05:00
fragments mutes 2023-09-28 15:02:25 -05:00
lib fix module issues when running worker 2023-09-26 20:33:54 -05:00
pages remove expiration when invoice is confirmed 2023-09-27 12:19:56 -05:00
prisma mutes 2023-09-28 15:02:25 -05:00
public Make the web manifest dynamic to incorporate preferred color scheme (#398) 2023-08-15 12:58:27 -05:00
scripts newsletter template improvements 2023-09-03 11:59:55 -05:00
spawn upgrade deps 2022-11-06 11:28:58 -06:00
styles prevent wallet balance overflow 2023-09-12 20:21:59 -05:00
svgs add prism logo 2023-09-26 16:44:57 -05:00
sw Add setting to send diagnostics back to SN (#463) 2023-09-18 18:00:16 -05:00
worker fix subpackage linting #523 2023-09-26 14:58:36 -05:00
.babelrc dark mode with css variables instead 2021-11-09 16:43:56 -06:00
.env.sample Add OpenSearch to docker setup for development (#509) 2023-09-24 18:24:04 -05:00
.gitignore remove slashtags completely 2023-08-17 13:40:21 -05:00
.npmrc Revert "Revert "shield your eyes; massive, squashed refactor; nextjs/react/react-dom/apollo upgrades"" 2023-07-23 10:08:43 -05:00
.puppeteerrc.cjs puppeteer config 2022-11-16 10:57:03 -06:00
Dockerfile use node v18 in docker 2023-08-07 13:19:11 -05:00
LICENSE add license 2021-06-28 18:28:26 -05:00
Procfile fix module issues when running worker 2023-09-26 20:33:54 -05:00
README.md Update README.md 2023-08-19 16:12:18 -05:00
contributors.txt Verify invoice amount in lightning address withdrawal (#501) 2023-09-23 20:21:40 -05:00
docker-compose.yml fix module issues when running worker 2023-09-26 20:33:54 -05:00
middleware.js referrals 2022-12-19 16:27:52 -06:00
next.config.js Convert worker to ESM (#500) 2023-09-23 20:19:35 -05:00
package-lock.json fix module issues when running worker 2023-09-26 20:33:54 -05:00
package.json fix module issues when running worker 2023-09-26 20:33:54 -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.

We aim to have a quick pr turnaround time, but we are sometimes slower than we'd like. In most cases, if your pr is unambiguously good, it shouldn't take us more than 1 week.

If you have a question about contributing start a discussion.

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.

web push

To enable Web Push locally, you will need to set the VAPID_* env vars. VAPID_MAILTO needs to be a email address using the mailto: scheme. For NEXT_PUBLIC_VAPID_KEY and VAPID_PRIVKEY, you can run npx web-push generate-vapid-keys.

imgproxy

To configure the image proxy, you will need to set the IMGPROXY_ env vars. NEXT_PUBLIC_IMGPROXY_URL needs to point to the image proxy service. IMGPROXY_KEY and IMGPROXY_SALT can be set using openssl rand -hex 64.

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 stackers 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