From 708776ee7bf9189db234de1c8ecf3e0ce77da632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emrik=20=C3=96stling?= Date: Tue, 28 May 2024 20:07:36 +0200 Subject: [PATCH 1/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cbf70b3..818319d 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,8 @@ docker run ghcr.io/c4illin/convertx:master -p 3000:3000 -e ACCOUNT_REGISTRATION= Then visit `http://localhost:3000` in your browser and create your account. Don't leave it unconfigured and open, as anyone can register the first account. +If you get unable to open database file run `chown -R $USER:$USER path` on the path you choose. + ## Todo - [x] Add messages for errors in converters - [ ] Add options for converters From 904b9447662bd2b16e069aeeba2ec2bfcc3470f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emrik=20=C3=96stling?= Date: Wed, 29 May 2024 10:04:41 +0200 Subject: [PATCH 2/6] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 818319d..4f5ffd1 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,9 @@ services: ports: - "3000:3000" environment: # Defaults are listed below - - ACCOUNT_REGISTRATION=false # true or false + - ACCOUNT_REGISTRATION=false # true or false, you can register the first account even though this is disabled - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 + - HTTP_ALLOWED=false # setting this to true is unsafe, but as long as it locally and you trust your local network there is no problem volumes: - /path/you/want:/app/data ``` @@ -47,6 +48,10 @@ Then visit `http://localhost:3000` in your browser and create your account. Don' If you get unable to open database file run `chown -R $USER:$USER path` on the path you choose. +### Tutorial + +Tutorial in french: https://belginux.com/installer-convertx-avec-docker/ + ## Todo - [x] Add messages for errors in converters - [ ] Add options for converters From 394cc3b7bd4dd3cc191fa11e915ebaa6672a4a61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emrik=20=C3=96stling?= Date: Wed, 29 May 2024 10:07:40 +0200 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f5ffd1..b23bb36 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ services: - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 - HTTP_ALLOWED=false # setting this to true is unsafe, but as long as it locally and you trust your local network there is no problem volumes: - - /path/you/want:/app/data + - convertx:/app/data ```