rudolfochrist / booker

A bookmark managing application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

booker

A simple bookmarking application with full-text search.

Installation

Firstly, add a configuration file to config/ENV.lisp with ENV being the environment the application is running in. E.g. development, production, etc.

See lib/config.lisp for configuration options.

$ git clone --recurse-submodules https://github.com/rudolfochrist/booker.git
$ install-dependecies # skip this if you're using Quicklisp. See: https://github.com/rudolfochrist/project-loader

DB migrations are handled manually. If you start a fresh DB

$ sqlite3 db/booker.db < db/schema.sql

is enough. If you have already a running instance with data, then you have to copy it over manually. If dependencies are installed and migrations applied then run

$ BOOKER_ENV=production sbcl --no-userinit --load init.lisp

to start the REPL. Then

REPL:

CL-USER: (asdf:load-system "booker" :force t) ;; user (ql:quickload "booker") if you use Quicklisp
CL-USER: (booker:start-application t)

About

A bookmark managing application

License:Mozilla Public License 2.0


Languages

Language:Common Lisp 64.0%Language:HTML 35.1%Language:Emacs Lisp 0.5%Language:Shell 0.4%