Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 842 Bytes

readme.md

File metadata and controls

24 lines (18 loc) · 842 Bytes

notebook

A sticky note style notebook, implemented as a purely client-side applicotion, backed by Dropbox. You can store notes (text, files, links, etc.), which will be persisted as entries in a markdown based plain text journal file in your dropbox. Features full-text search, tagging, etc.

Why?

For science.

And also politics. I might write a blog post.

Running

  1. Get a dropbox API key
    1. visit the dropbox app console and create an app
    2. copy the App key from your newly created application
  2. Move the env.json file into place, and replace the api key
    1. $ cd src
    2. $ cat env.json.example | sed 's/APIKEY/[your api key you just copied]/' > env.json
  3. Install deps and get running!
    1. $ npm install
    2. $ bower install
    3. $ grunt serve`