OOKO - Task management
Task management service based on the Kanban methodology. Helps decompose the task pipeline and speeds up all stages of your work
Telegram https://t.me/ookopro
Demo https://ooko.pro
Requirements
- Node or Bun
- CouchDB (optional)
Install
Create file package.json
echo -e '{"type": "module", "dependencies": {"ooko": "*"}}' > package.json
npm i # or bun i
Run
node node_modules/ooko/server.js --pwd node_modules/ooko --app-configs ../../configs.js
--- or ---
bun node_modules/ooko/server.js --pwd node_modules/ooko --app-configs ../../configs.js
configs.js
export default {
application_host: "https://ooko.local",
license: "demo",
db_board: "/var/opt/ooko/db-board",
admins: [],
email_noreply: '"ooko.local" <noreply@ooko.local>',
email: {
service: "Gmail",
user: "noreply@ooko.local",
pass: "##",
},
host: "127.0.0.1",
port: 8010,
};