|
@@ -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"
|
|
|
+
|