A bookmark organizing service for real pinheads.

Getty Ritter 775af05cb2 Fix error-message showing 4 years ago
assets 97c06a6b3a add assets + start to make it look pretty 4 years ago
lc 775af05cb2 Fix error-message showing 4 years ago
screenshots 8aabe51860 make README prettier 4 years ago
scripts 4f845f98d9 Format 4 years ago
stubs b50a26650f Move pagination and implement a proper LinkList view 4 years ago
templates c0df866d7e Also only show edit link if logged in as same user 4 years ago
tests b3743d9854 Fix tag editing again 4 years ago
.drone.yml ea3bf47c1a Try adding drone file 4 years ago
.gitignore f323eb4d49 Ignore mypy cache 4 years ago
DEVELOPING.md 5ad99c1cec Make note about pipx 4 years ago
README.md 8aabe51860 make README prettier 4 years ago
lament-configuration.py 217e0fbea9 Make stuff in the config not capitalized 4 years ago
poetry.lock 2fcc9717c2 Add uwsgi invoke 4 years ago
pyproject.toml 2fcc9717c2 Add uwsgi invoke 4 years ago
tasks.py 58845e86c7 Ignore all deprecation warnings 4 years ago

README.md

Lament Configuration

lament configuration logo

Bookmark organizing for pinheads.

In-Progress Screenshots

screenshot 01

Planned Features

  • Hierarchical tags: every link tagged with #food/bread will also be visible under #food
  • Collections: your top-level view of links can optionally be several folder-like divisions instead of a single tagged soup of link
  • Optional image previews: links can be viewed in text view or in thumbnail view, and this setting should be sticky on a per-collection basis
  • Some kind of bookmarklet for adding links, of course

Developing

You'll need poetry installed, and having invoke installed makes it easier.

# install all the needed dependencies
$ inv install
# run all the tests
$ inv test
# run a local test server at port 9999
$ inv run -p 9999

All the code here is auto-formatted by black, which should be installed by the inv install. Running inv fmt on a clean branch will run black over all Python files and commit those changes automatically; if the repository is dirty then it will run the formatter but won't try to commit anything.