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: 4 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 (6 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T15:50:33.000Z (about 2 months ago)
- Last Synced: 2024-12-05T17:46:52.374Z (about 1 month ago)
- Language: Common Lisp
- Size: 329 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 https://github.com/rudolfochrist/booker.git
$ ocicl install
```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
$ APP_ENV=production sbcl --no-userinit --load init.lisp
```to start the REPL. Then
REPL:
```common-lisp
CL-USER: (asdf:load-system "booker" :force t)
CL-USER: (booker:start-application t)
```