Go to file
2020-03-30 12:06:21 -05:00
app add more user fields to CreateUser 2020-03-30 12:06:21 -05:00
config disable ekg 2020-03-29 18:58:29 -05:00
purs psc-0.13.5-20191227 -> psc-0.13.6-20200226 2020-03-08 17:31:11 -05:00
src ghc 8.8.3 updates 2020-03-29 20:14:19 -05:00
static psc-0.13.5-20191227 -> psc-0.13.6-20200226 2020-03-08 17:31:11 -05:00
templates implement tag cloud: resolves #9 2020-01-29 00:02:41 -06:00
test init 2019-01-30 20:54:47 -06:00
.dockerignore init 2019-01-30 20:54:47 -06:00
.env init 2019-01-30 20:54:47 -06:00
.gitignore focus tags input when editing bookmark 2020-01-20 11:14:46 -06:00
changelog.md init 2019-01-30 20:54:47 -06:00
docker-compose.yml disable ekg 2020-03-29 18:58:29 -05:00
Dockerfile init 2019-01-30 20:54:47 -06:00
espial.cabal ghc 8.8.3 updates 2020-03-29 20:14:19 -05:00
LICENSE init 2019-01-30 20:54:47 -06:00
Makefile fix ekg dist path 2019-09-13 22:35:53 -05:00
package.yaml ghc 8.8.3 updates 2020-03-29 20:14:19 -05:00
README.md disable ekg 2020-03-29 18:58:29 -05:00
sample-bookmarks.json init 2019-01-30 20:54:47 -06:00
sample-migrate.sh init 2019-01-30 20:54:47 -06:00
stack.yaml ghc 8.8.3 updates 2020-03-29 20:14:19 -05:00
stack.yaml.lock ghc 8.8.3 updates 2020-03-29 20:14:19 -05:00

Espial

Espial is an open-source, web-based bookmarking server.

It allows mutiple accounts, but currently intended for self-host scenarios.

The bookmarks are stored in a sqlite3 database, for ease of deployment & maintenence.

The easist way for logged-in users to add bookmarks, is with the "bookmarklet", found on the Settings page.

demo server

log in — username: demo password: demo

https://esp.ae8.org/u:demo

jpg

Docker Setup

see https://github.com/jonschoning/espial-docker

Server Setup (from source)

  1. Install the Stack executable here:

  2. Build executables

    stack build
    
  3. Create the database

    stack exec migration -- createdb --conn espial.sqlite3
    
  4. Create a user

    stack exec migration -- createuser --conn espial.sqlite3 --userName myusername --userPassword myuserpassword
    
  5. Import a bookmark file for a user (optional)

     stack exec migration -- importbookmarks --conn espial.sqlite3 --userName myusername --bookmarkFile sample-bookmarks.json
    
  6. Start a production server:

    stack exec espial -- +RTS -T
    

see config/settings.yml for changing default run-time parameters / environment variables

default app http port: 3000

ssl: use reverse proxy

Development

Backend

  • Install the yesod command line tool: stack install yesod-bin --install-ghc

  • Start a development server:

    yesod devel
    

Frontend

  • See purs/ folder

Import Bookmark file format

see sample-bookmarks.json, which contains a JSON array, each line containing a FileBookmark object.

example:

[ {"href":"http://raganwald.com/2018/02/23/forde.html","description":"Forde's Tenth Rule, or, \"How I Learned to Stop Worrying and \u2764\ufe0f the State Machine\"","extended":"","time":"2018-02-26T22:57:20Z","shared":"yes","toread":"yes","tags":"raganwald"},
, {"href":"http://downloads.haskell.org/~ghc/latest/docs/html/users_guide/flags.html","description":"7.6. Flag reference \u2014 Glasgow Haskell Compiler 8.2.2 User's Guide","extended":"-fprint-expanded-synonyms","time":"2018-02-26T21:52:02Z","shared":"yes","toread":"no","tags":"ghc haskell"},
]