Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rudolfochrist/booker
A bookmark managing application
https://github.com/rudolfochrist/booker
Last synced: 21 days ago
JSON representation
A bookmark managing application
- Host: GitHub
- URL: https://github.com/rudolfochrist/booker
- Owner: rudolfochrist
- License: mpl-2.0
- Created: 2024-07-09T07:33:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T10:05:09.000Z (3 months ago)
- Last Synced: 2024-07-29T16:44:33.240Z (3 months ago)
- Language: Common Lisp
- Size: 265 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# 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.
```sh
$ 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
```sh
$ 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```sh
$ BOOKER_ENV=production sbcl --no-userinit --load init.lisp
```to start the REPL. Then
REPL:
```common-lisp
CL-USER: (asdf:load-system "booker" :force t) ;; user (ql:quickload "booker") if you use Quicklisp
CL-USER: (booker:start-application t)
```