|
@@ -1,7 +1,17 @@
|
|
|
#!/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
|
|
@@ -11,10 +21,9 @@ sudo apt install -y apache2 libapache2-mod-php php-cli php-mbstring \
|
|
|
cd /var/www/html
|
|
|
|
|
|
### Download the latest release from https://github.com/kanboard/kanboard/releases
|
|
|
-set version '1.2.10'
|
|
|
-
|
|
|
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"
|