Go to file
mvpratt 1a763a9ac3 add instructions for testing with local auth 2023-04-26 13:02:42 -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 undo april fools 2023-04-03 09:08:15 -05:00
components give pinned item recent sort by default 2023-03-19 10:43:33 -05:00
docs add instructions for testing with local auth 2023-04-26 13:02:42 -05:00
fragments ots timestamp link on comments 2023-02-24 10:02:20 -06:00
lexical reuse validation on server 2023-02-08 13:39:53 -06:00
lib Implement bookmarking of posts and comments (#235) 2023-02-16 16:23:59 -06:00
pages limit oauth scope to minimum possible: public github info for user 2023-04-26 13:02:42 -05:00
prisma enhance item related query perf 2023-02-24 10:35:05 -06:00
public client side error boundary 2023-02-08 17:59:14 -06:00
spawn upgrade deps 2022-11-06 11:28:58 -06:00
styles Implement bookmarking of posts and comments (#235) 2023-02-16 16:23:59 -06:00
svgs Implement bookmarking of posts and comments (#235) 2023-02-16 16:23:59 -06:00
worker dont run npm install twice on `docker compose up` 2023-04-26 13:02:42 -05:00
.babelrc dark mode with css variables instead 2021-11-09 16:43:56 -06:00
.env.sample Mention slashtags auth in README 2023-02-10 16:12:18 -06:00
.gitignore stackernews bounties (#227) 2023-01-26 10:11:55 -06: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 instructions for testing with local auth 2023-04-26 13:02:42 -05:00
docker-compose.yml dont run npm install twice on `docker compose up` 2023-04-26 13:02:42 -05:00
middleware.js referrals 2022-12-19 16:27:52 -06:00
next.config.js relax CORS on lnurlp (eg nostr browser clients) 2023-01-25 11:43:58 -06:00
package-lock.json complete nip 57 support 2023-02-14 16:58:12 -06:00
package.json complete nip 57 support 2023-02-14 16:58:12 -06: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.

wen decentralization?

We're discussing if it's possible to provide SN on nostr and/or a hybrid approach and have plans to begin experimenting with it. 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. 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.

contributing

Pull requests are welcome. Please submit feature requests and bug reports through issues.

license

MIT