Giter VIP home page Giter VIP logo

shiori's Introduction

Shiori

Travis CI Go Report Card Docker Build Status

Shiori is a simple bookmarks manager written in Go language. Intended as a simple clone of Pocket. You can use it as command line application or as web application. This application is distributed as a single binary, which means it can be installed and used easily.

Screenshot

Table of Contents

Features

  • Simple and clean command line interface.
  • Basic bookmarks management i.e. add, edit and delete.
  • Search bookmarks by their title, tags, url and page content.
  • Import and export bookmarks from and to Netscape Bookmark file.
  • Portable, thanks to its single binary format and sqlite3 database
  • Simple web interface for those who don't want to use a command line app.
  • Where possible, by default shiori will download a static copy of the webpage in simple text and HTML format, which later can be used as an offline archive for that page.

Installation

You can download the latest version of shiori from the release page, then put it in your PATH. If you want to build from source, make sure go is installed, then run :

go get github.com/RadhiFadlillah/shiori

Usage

Simple command-line bookmark manager built with Go.

Usage:
  shiori [command]

Available Commands:
  account     Manage account for accessing web interface
  add         Bookmark the specified URL
  delete      Delete the saved bookmarks
  export      Export bookmarks into HTML file in Netscape Bookmark format
  help        Help about any command
  import      Import bookmarks from HTML file in Netscape Bookmark format
  open        Open the saved bookmarks
  print       Print the saved bookmarks
  search      Search bookmarks by submitted keyword
  serve       Serve web app for managing bookmarks
  update      Update the saved bookmarks

Flags:
  -h, --help   help for shiori

Use "shiori [command] --help" for more information about a command.

Advanced

By default, shiori will create database in $HOME/.shiori.db. If you want to set the database to another location, you can set the environment variable ENV_SHIORI_DB to your desired path :

  • If ENV_SHIORI_DB points to a directory, it will create .shiori.db file inside that directory, so the final path for database is $ENV_SHIORI_DB/.shiori.db.
  • Else, it will create a new database file in the specified path.

Usage with Docker

There's a Dockerfile that enables you to build your own dockerized Shiori :

docker build -t shiori .

You can also pull the latest automated build from Docker Hub :

docker pull radhifadlillah/shiori

Run the container

After building the image you will be able to start a container from it. To preserve the database you need to bind the file. In this example we're locating the shiori.db file in our CWD.

touch shiori.db
docker run --rm --name shiori -p 8080:8080 -v $(pwd)/shiori.db:/srv/shiori.db radhifadlillah/shiori

If you want to run the container in the background add -d after run.

Console access for container

# First open a console to the container (as you will need to enter your password)
# and the default tty does not support hidden inputs
docker exec -it shiori sh

Initialize shiori with password

As after running the container there will be no accounts created, you need to open a console within your container and run the following command:

shiori account add <your-desired-username>
Password: <enter-your-password>

And you're now ready to go and access shiori via web.

Run Shiori docker container as systemd image

  1. Create a service unit for systemd at /etc/systemd/system/shiori.service.

    [Unit]
    Description=Shiori container
    After=docker.service
    
    [Service]
    Restart=always
    ExecStartPre=-/usr/bin/docker rm shiori-1
    ExecStart=/usr/bin/docker run \
      --rm \
      --name shiori-1 \
      -p 8080:8080 \
      -v /srv/machines/shiori/shiori.db:/srv/shiori/shiori.db \
      radhifadlillah/shiori
    ExecStop=/usr/bin/docker stop -t 2 shiori-1
    
    [Install]
    WantedBy=multi-user.target
  2. Set up data directory

    This assumes, that the Shiori container has a runtime directory to store their database, which is at /srv/machines/shiori. If you want to modify that, make sure, to fix your shiori.service as well.

    install -d /srv/machines/shiori
    touch /srv/machines/shiori/shiori.db
  3. Enable and start the container

    systemctl enable --now shiori

Examples

Hint: If you want to practice the following commands with the docker container, run the image and open a console. After that go along with the examples.

  1. Save new bookmark with tags "nature" and "climate-change".

    shiori add https://grist.org/article/let-it-go-the-arctic-will-never-be-frozen-again/ -t nature,climate-change
  2. Print all saved bookmarks.

    shiori print
  3. Print bookmarks with index 1 and 2.

    shiori print 1 2
  4. Search bookmarks that contains "sqlite" in their title, excerpt, url or content.

    shiori search sqlite
  5. Search bookmarks with tag "nature".

    shiori search -t nature
  6. Delete all bookmarks.

    shiori delete
  7. Delete all bookmarks with tag "nature".

    shiori delete $(shiori search -t nature -i)
  8. Update all bookmarks' data and content.

    shiori update
  9. Update bookmark in index 1.

    shiori update 1
  10. Change title and excerpt from bookmark in index 1.

    shiori update 1 -i "New Title" -e "New excerpt"
  11. Add tag "future" and remove tag "climate-change" from bookmark in index 1.

    shiori update 1 -t future,-climate-change
  12. Import bookmarks from HTML Netscape Bookmark file.

    shiori import exported-from-firefox.html
  13. Export saved bookmarks to HTML Netscape Bookmark file.

    shiori export target.html
  14. Open all saved bookmarks in browser.

    shiori open
  15. Open text cache of bookmark in index 1.

    shiori open 1 -c
  16. Serve web app in port 9000.

    shiori serve -p 9000
  17. Create new account for login to web app.

    shiori account add username

License

Shiori is distributed using MIT license, which means you can use and modify it however you want. However, if you make an enhancement for it, if possible, please send a pull request.

shiori's People

Contributors

radhifadlillah avatar s-frostick avatar peteretelej avatar muesli avatar dexafree avatar sascha-andres avatar abeestrada avatar generall avatar maxmeyer avatar skx avatar vikaskedia avatar wayneashleyberry avatar paralax avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.