Calibre web frontend, Go (golang) https://bouquins.meutel.net
Go to file
Meutel f1363dce5d Dockerfile 2019-07-02 20:16:13 +02:00
assets minify css 2017-09-09 18:09:03 +02:00
bouquins Protect books files 2017-09-09 18:03:59 +02:00
templates Design provider page 2017-09-09 12:28:46 +02:00
.gitignore Users database 2017-09-09 17:13:47 +02:00
Dockerfile Dockerfile 2019-07-02 20:16:13 +02:00
Gopkg.toml Dependency management with dep 2017-09-06 12:07:10 +02:00
LICENSE Initial commit 2017-07-30 20:15:54 +02:00
README.md minify css 2017-09-09 18:09:03 +02:00
main.go Protect books files 2017-09-09 18:03:59 +02:00

README.md

go-bouquins

Bouquins in Go

TODO

  • translations
  • tests
  • csrf
  • userdb commands (init, migrate, add/remove user/email)
  • error pages

Minify

Deployment archive

tar czf ~/tmp/go-bouquins.tar.gz go-bouquins assets/ templates/

Configuration

JSON config file: default ./bouquins.json, or binary argument

Example:

{
  "calibre-path": "/usr/home/meutel/data/calibre",
  "bind-address": ":8080",
  "prod": true,
  "cookie-secret": "random",
  "external-url":"https://bouquins.meutel.net",
  "providers": [
    {
      "name": "github",
      "client-id": "ID client",
      "client-secret": "SECRET"
    },
    {
      "name": "google",
      "client-id":"ID client",
      "client-secret":"SECRET"
    }
  ]
}

Options:

  • calibre-path path to calibre data
  • db-path path to calibre SQLite database (default /metadata.db)
  • user-db-path path to users SQLite database (default ./users.db)
  • bind-address HTTP socket bind address
  • prod (boolean) use minified javascript/CSS
  • cookie-secret random string for cookie encryption
  • external-url URL used by client browsers
  • providers configuration for OAuth 2 providers
    • name provider name
    • client-id OAuth client ID
    • client-secret OAuth secret

Users SQL

CREATE TABLE accounts (id varchar(36) PRIMARY KEY NOT NULL, name varchar(255) NOT NULL); CREATE TABLE authentifiers (id varchar(36) NOT NULL, authentifier varchar(320) PRIMARY KEY NOT NULL, FOREIGN KEY(id) REFERENCES account(id));