git ssb

2+

mixmix / ticktack



Tree:
📄.gitignore
📄README.md
📁about
📁app
📁assets
📄background-process.js
📁blob
📄config.js
📄context-menu.js
📄default-config.json
📄index.js
📄main.js
📁message
📄package-lock.json
📄package.json
📁router
📁state
📁styles
📁test
📁translations
📄unread.js
README.md

Ticktack

Planning

Workplan 1

Trello

Development

Repos

Install

$ npm install
$ npm run rebuild

App env

To run development setup with standard ssb key + network :

  1. start you sbot $ sbot server
  2. run $ npm run dev in the repo directory

To run a production setup:

  1. run npm start
  2. to debug sbot from terminal, run $ ssb_appname=ticktack sbot whoami

Note you'll need a ~/.ticktack/config file to be able to do (2). It should have the plugins you're using and a copy of the content of default-config.json, so will look something like:

{
  "plugins": {
    "ssb-contacts": true,
    "ssb-about": true,
    "ssb-backlinks": true
  },
  "port": 43750,
  "blobsPort": 43751,
  "ws": { "port": 43751 },
  "caps": {"shs": "ErgQF85hFQpUXp69IXtLW+nXDgFIOKKDOWFX/st2aWk="},
  "autoinvite": "128.199.132.182:43750:@7xMrWP8708+LDvaJrRMRQJEixWYp4Oipa9ohqY7+NyQ=.ed25519~YC4ZnjHH8qzsyHe2sihW8WDlhxSUH33IthOi4EsldwQ="
}

Translations

Theses are in /translations. There's a helper script in there called checker.js which looks for translations in en (english) that are missing from zh (mandarin).

Built with git-ssb-web