Няма описание

go1dfish 8edd233f43 v0.79.1 преди 5 години
chaingun @ fcfd542370 6688e46adf Fix unsub issue преди 5 години
data f662df44e3 Initial commit преди 5 години
packages 9d7db78ed9 v0.79.1 преди 5 години
.gitignore f662df44e3 Initial commit преди 5 години
.gitmodules f662df44e3 Initial commit преди 5 години
CODE_OF_CONDUCT.md f662df44e3 Initial commit преди 5 години
LICENSE f662df44e3 Initial commit преди 5 години
README.md 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs преди 5 години
default.env e631a7db4e Support http put rate limiting and per-identity bypass преди 5 години
default.peers.yaml 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs преди 5 години
lerna.json 9d7db78ed9 v0.79.1 преди 5 години
package.json 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs преди 5 години
postinstall.js 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs преди 5 години
yarn.lock 45a2737960 Update yarn.lock преди 5 години

README.md

Notabug UI

Federated fork of classic reddit UI based on gunDB

I think all censorship should be deplored. My position is that bits are not a bug.

— Aaron Swartz (1986 - 2013)

notabug is a p2p link aggregator app that is:

  • distributed: peers backup/serve content
  • anonymous: but don't trust it to be
  • psuedo-anonymous: users can create optional cryptographic identities
  • immutable: edits are not supported for anonymous content
  • mutable: edits are supported for authenticated content
  • PoW-based: voting is slow/CPU heavy

Setup Instructions

Pre-Requisites

Git and Node + Yarn are required.

NVM is recommended: https://github.com/nvm-sh/nvm

wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
nvm install 12 && npm install -g yarn

Notabug Server Install

git clone https://github.com/notabugio/notabug.git && cd notabug
yarn setup && yarn start

Server Operation Commands

The commands necessary for operating a notabug server.
They should be run in your notabug checkout's root directory.

yarn setup

Installs yarn dependencies and builds all packages

yarn start

Starts the server with pm2

yarn stop

Stops running server if using pm2

yarn logs

Tail pm2 server logs

yarn status

Show pm2 status

yarn reload

Hot-restart server worker process(es) if using pm2

yarn gitupgrade

Pulls latest master, installs packages, rebuilds and hot reloads server in pm2

Dev Commands

The commands are primarily useful for doing notabug development

yarn server

Starts the server in foreground (pm2 is preferred/recommended)

Control+C to stop

yarn buildchanges

Builds local changes only

yarn buildall

Builds all packages