浏览代码

Merge branch 'kanboard'

Jovian (Netbook) 5 年之前
父节点
当前提交
ab097dce6e
共有 3 个文件被更改,包括 45 次插入0 次删除
  1. 10 0
      Install/Templates/config.php
  2. 5 0
      Install/Templates/postgres_kanboard.sql
  3. 30 0
      Install/kanboard-install

+ 10 - 0
Install/Templates/config.php

@@ -0,0 +1,10 @@
+<?php
+
+// We choose to use Postgresql instead of Sqlite
+define('DB_DRIVER', 'postgres');
+
+// PostgreSQL parameters
+define('DB_USERNAME', 'kanboard_app');
+define('DB_PASSWORD', 'pot4toes!');
+define('DB_HOSTNAME', 'localhost');
+define('DB_NAME', 'kanboard_db');

+ 5 - 0
Install/Templates/postgres_kanboard.sql

@@ -0,0 +1,5 @@
+-- Create PostgreSQL stuff for Kanboard app
+CREATE ROLE kanboard_app WITH CREATEDB LOGIN PASSWORD 'pot4toes!';
+
+CREATE DATABASE kanboard_db OWNER kanboard_app;
+

+ 30 - 0
Install/kanboard-install

@@ -0,0 +1,30 @@
+#!/bin/usr/fish
+
+#### PostgreSQL required
+
+# Install Kanboard
+
+## Find the latest release on https://github.com/kanboard/kanboard/releases
+set version '1.2.10'
+
+## PostgreSQL setup
+sudo -u postgres psql -f Templates/postgres_kanboard.sql
+sudo mkdir -p "/var/www/html/kanboard-$version"
+sudo cp Templates/config.php "/var/www/html/kanboard-$version/"
+
+## Install PHP
+sudo apt install -y apache2 libapache2-mod-php php-cli php-mbstring  \
+    php-opcache php-json php-pgsql php-gd php-xml
+
+## Install Kanboard
+### Go to apache folder
+cd /var/www/html
+
+### Download the latest release from https://github.com/kanboard/kanboard/releases
+wget "https://github.com/kanboard/kanboard/archive/v$version.zip"
+
+### Deploy
+unzip "v$version.zip"
+chown -R www-data:www-data "kanboard-$version/data"
+rm "v$version.zip"
+