An open API service indexing awesome lists of open source software.

https://github.com/akicho8/memo_station

Emacs synchronized memo management rails application
https://github.com/akicho8/memo_station

emacs emacs-lisp memo memo-application rails ruby

Last synced: 2 months ago
JSON representation

Emacs synchronized memo management rails application

Awesome Lists containing this project

README

          

* MemoStation

Emacs synchronized memo management rails application.

** Setup

#+BEGIN_SRC shell
setup
open http://localhost:3000/
#+END_SRC

** Deployment

#+BEGIN_SRC shell
cap production deploy
#+END_SRC

** Emacs Interface

#+BEGIN_SRC shell
(load "~/src/memo_station/lib/memo-station.el")
#+END_SRC

[[https://github.com/tkf/emacs-request][request.el]] and [[https://github.com/magnars/s.el][s.el]] installation not installed.

#+BEGIN_EXAMPLE
M-x package-install request
M-x package-install s
#+END_EXAMPLE

Add the following in your =.emacs= file: (example)

#+BEGIN_SRC elisp
(require 'memo-station)
(setq memo-station-url "http://memo/")
(global-unset-key "\C-j")
(global-set-key (kbd "C-j w") 'memo-station-create)
(global-set-key (kbd "C-j s") 'memo-station-search)
#+END_SRC