Ingen beskrivning

go1dfish b258651e96 v0.88.0 5 år sedan
chaingun @ b4b5a33034 67e5403d26 Separate combined tabulator/indexer with improved performance 5 år sedan
data f662df44e3 Initial commit 5 år sedan
lingua-webca @ a48870ff3a 9f1b61a986 client module and SaidIt ingest 5 år sedan
packages f2bd1c91e8 v0.88.0 5 år sedan
.gitignore f662df44e3 Initial commit 5 år sedan
.gitmodules 9f1b61a986 client module and SaidIt ingest 5 år sedan
CODE_OF_CONDUCT.md f662df44e3 Initial commit 5 år sedan
LICENSE f662df44e3 Initial commit 5 år sedan
README.md 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs 5 år sedan
default.env 67e5403d26 Separate combined tabulator/indexer with improved performance 5 år sedan
default.peers.yaml 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs 5 år sedan
lerna.json f2bd1c91e8 v0.88.0 5 år sedan
package.json 67e5403d26 Separate combined tabulator/indexer with improved performance 5 år sedan
postinstall.js 3f25cb3fe4 Everything in chaingun or notabug monorepos now, add docs 5 år sedan
yarn.lock c71a2baa45 Update yarn.lock 5 år sedan

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