Files
HackFlowy/README.md
T
2014-08-16 23:54:48 -03:00

1014 B

#HackFlowy

An open-source Workflowy clone.

##Installation

  • Edit config/development.json to your needs
  • npm install
  • Run migrations and initialize the database: sequelize-cli -m --config config/database.json and node db/seed/initial_tasks.js
  • node server.js

##Heroku deploy

  • heroku create --stack cedar
  • heroku addons:add heroku-postgresql:dev
  • heroku config:set NODE_ENV=production
  • git push heroku heroku-integration:master

##Controls

  • UP & DOWN: navigate through tasks
  • TAB: right-indent
  • SHIFT + TAB: left-indent

##Technologies used

  • Node + Socket.io
  • Backbone
  • Foundation

##To-do

  • Work on sub-lists. The parent id of the Backbone task model has to be set for it to be saved properly. The template should be modified to have the children ul as part of every task.
  • Search & Tags
  • Themes

Feel free to try it out and contribute.