kanboard-install 805 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/usr/fish
  2. #### PostgreSQL required
  3. # Install Kanboard
  4. ## Find the latest release on https://github.com/kanboard/kanboard/releases
  5. set version '1.2.10'
  6. ## PostgreSQL setup
  7. sudo -u postgres psql -f Templates/postgres_kanboard.sql
  8. sudo mkdir -p "/var/www/html/kanboard-$version"
  9. sudo cp Templates/config.php "/var/www/html/kanboard-$version/"
  10. ## Install PHP
  11. sudo apt install -y apache2 libapache2-mod-php php-cli php-mbstring \
  12. php-opcache php-json php-pgsql php-gd php-xml
  13. ## Install Kanboard
  14. ### Go to apache folder
  15. cd /var/www/html
  16. ### Download the latest release from https://github.com/kanboard/kanboard/releases
  17. wget "https://github.com/kanboard/kanboard/archive/v$version.zip"
  18. ### Deploy
  19. unzip "v$version.zip"
  20. chown -R www-data:www-data "kanboard-$version/data"
  21. rm "v$version.zip"