Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 896 Bytes

advanced-installation.md

File metadata and controls

33 lines (22 loc) · 896 Bytes

Advanced Installation

Running ScreenJournal from a precompiled binary

Linux binaries are available for ScreenJournal.

ScreenJournal runs as a single-file binary, so installation is straightforward.

First, download the binary for your architecture from the latest release. Extract the file from the archive, and run it with the following command:

SJ_TMDB_API='your-TMDB-api-key' # Replace with your own

SJ_REQUIRE_TLS=false \
  PORT=4003 \
  SJ_TMDB_API="${SJ_TMDB_API}" \
  ./screenjournal

ScreenJournal will be running at http://localhost:4003

Running ScreenJournal from source

SJ_TMDB_API='your-TMDB-api-key' # Replace with your own

SJ_REQUIRE_TLS=false \
  PORT=4003 \
  SJ_TMDB_API="${SJ_TMDB_API}" \
  go run ./cmd/screenjournal

ScreenJournal will be running at http://localhost:4003