mirror of
https://github.com/YunoHost-Apps/focalboard_ynh.git
synced 2024-09-03 18:36:19 +02:00
commit
f1c34d4e4f
6 changed files with 11 additions and 13 deletions
|
@ -11,7 +11,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
|||
## Overview
|
||||
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana. It helps define, organize, track and manage work across individuals and teams.
|
||||
|
||||
**Shipped version:** 0.6.1
|
||||
**Shipped version:** 0.6.5
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install
|
|||
## Vue d'ensemble
|
||||
Focalboard est une alternative open source auto-hébergée à Trello, Notion et Asana. Il aide à définir, organiser, suivre et gérer le travail entre les individus et les équipes.
|
||||
|
||||
**Version incluse :** 0.6.1
|
||||
**Version incluse :** 0.6.5
|
||||
|
||||
## Captures d'écran
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.1/focalboard-server-linux-amd64.tar.gz
|
||||
SOURCE_SUM=65ec7e811f37706af33d2f6825850a656fc48be520c55649ad0d3a136716aac6
|
||||
SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5/focalboard-server-linux-amd64.tar.gz
|
||||
SOURCE_SUM=c8199dcd74a4bd47b55da73248db6f0d8e9dab7ceee91bbfc52284afea1ca9da
|
||||
SOURCE_SUM_PRG=sha256sum
|
||||
SOURCE_FORMAT=tar.gz
|
||||
SOURCE_IN_SUBDIR=true
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
"port": __PORT__,
|
||||
"dbtype": "postgres",
|
||||
"dbconfig": "postgres://__DB_NAME__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10",
|
||||
"postgres_dbconfig": "dbname=focalboard sslmode=disable",
|
||||
"useSSL": false,
|
||||
"webpath": "./pack",
|
||||
"filespath": "/home/yunohost.app/__APP__/files",
|
||||
"filespath": "./files",
|
||||
"telemetry": false,
|
||||
"session_expire_time": 2592000,
|
||||
"session_refresh_time": 18000,
|
||||
"localOnly": false,
|
||||
"enableLocalMode": true,
|
||||
"localModeSocketLocation": "/var/tmp/focalboard_local.socket"
|
||||
"localOnly": false
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||
location __PATH__/ {
|
||||
location / {
|
||||
|
||||
# Force usage of https
|
||||
if ($scheme = http) {
|
||||
|
@ -28,7 +27,7 @@ location __PATH__/ {
|
|||
more_clear_input_headers 'Accept-Encoding';
|
||||
}
|
||||
|
||||
location __PATH__/ws/ {
|
||||
location /ws/ {
|
||||
proxy_pass http://127.0.0.1:__PORT__/;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
|
@ -48,6 +47,6 @@ location __PATH__/ws/ {
|
|||
proxy_read_timeout 1d;
|
||||
}
|
||||
|
||||
location __PATH__/uploads/ {
|
||||
location /uploads/ {
|
||||
alias __FILES_PATH__/uploads/ ;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"en": "Self-hosted alternative to Trello, Notion, and Asana",
|
||||
"fr": "Alternative auto-hébergée à Trello, Notion et Asana"
|
||||
},
|
||||
"version": "0.6.1~ynh1",
|
||||
"version": "0.6.5~ynh2",
|
||||
"url": "https://www.focalboard.com/",
|
||||
"license": "MIT",
|
||||
"maintainer": {
|
||||
|
|
Loading…
Add table
Reference in a new issue