ncarlier / readflow

readflow is a news-reading (or read-it-later) solution focused on versatility and simplicity.
https://about.readflow.app
GNU Affero General Public License v3.0
415 stars 33 forks source link

All suggested installation methods fail on Ubuntu 20.04 #51

Closed Almost-Senseless-Coder closed 1 year ago

Almost-Senseless-Coder commented 2 years ago

All suggested installation methods fail on Ubuntu 20.04 server edition.

Curl: Error: Failed to extract resource URL (the same happens if I run install.sh from my terminal after cloning the repository).

gobinaries.com: Error: The repository has no tags.

docker: The container exits on run with error code 1.

Haven't tried build from source yet, as I didn't really plan to install Golang on my server...

ncarlier commented 2 years ago

Hi,

Curl examples will work as soon the project will be have a TAG. It's still a "beta".

With Docker you have to provide the PostgreSQL connection string.

$ docker run -it --rm \
    -p 8080:8080 \
    -e READFLOW_DB=<YOUR POSTGRESQL CONNECTION STRING> \
    ncarlier/readflow:edge
Almost-Senseless-Coder commented 1 year ago

Thanks, that solves it ^^