Kanbaoard: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
V (Diskussion | Beiträge) |
V (Diskussion | Beiträge) |
||
| (6 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 21: | Zeile 21: | ||
</source> | </source> | ||
=== Kanboard Konfigurieren=== | |||
<source lang=php> | |||
// cp config.default.php config.php | |||
define('MAIL_TRANSPORT', 'smtp'); | |||
define('MAIL_SMTP_HOSTNAME', 'sub.domain.tld'); | |||
define('MAIL_SMTP_PORT', 25); | |||
define('MAIL_SMTP_USERNAME', 'name@domain.tld'); | |||
define('MAIL_SMTP_PASSWORD', 'PASSWORD'); | |||
define('MAIL_SMTP_ENCRYPTION', tls); // Valid values are "null", "ssl" or "tls" | |||
define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs'); | |||
</source> | |||
=== Kanboard Plugins === | |||
http://kanboard.net/plugins | |||
====http://kanboard.net/plugin/wysiwyg==== | |||
<source lang=bash> | |||
git clone https://github.com/sebastiantiede/kanboard-plugin-wysiwyg.git plugins/wysiwyg | |||
cd plugins/wysiwyg/ | |||
apt-get install npm | |||
npm install -g bower | |||
( ln -s /usr/bin/nodejs /usr/bin/node OR apt-get install nodejs-legacy) | |||
bower install bower --allow-root | |||
bower install --allow-root | |||
</source> | |||
===kanboard artikelserie=== | |||
https://demaya.de/kanboard-artikelserie/ | |||
Aktuelle Version vom 15. Januar 2016, 11:34 Uhr
Installation
apt-get install php5-sqlite
service apache restart
git clone https://github.com/fguillot/kanboard.git
cd /var/www/kanboard/
# Falls Composer benötigt wird
curl -sS https://getcomposer.org/installer | php
#php composer.phar
php composer.phar install
url
login: Benutzer: admin Passwort: admin
kanboard aktuell halten:
git pull
php composer.phar update
Kanboard Konfigurieren
// cp config.default.php config.php
define('MAIL_TRANSPORT', 'smtp');
define('MAIL_SMTP_HOSTNAME', 'sub.domain.tld');
define('MAIL_SMTP_PORT', 25);
define('MAIL_SMTP_USERNAME', 'name@domain.tld');
define('MAIL_SMTP_PASSWORD', 'PASSWORD');
define('MAIL_SMTP_ENCRYPTION', tls); // Valid values are "null", "ssl" or "tls"
define('MAIL_SENDMAIL_COMMAND', '/usr/sbin/sendmail -bs');
Kanboard Plugins
git clone https://github.com/sebastiantiede/kanboard-plugin-wysiwyg.git plugins/wysiwyg
cd plugins/wysiwyg/
apt-get install npm
npm install -g bower
( ln -s /usr/bin/nodejs /usr/bin/node OR apt-get install nodejs-legacy)
bower install bower --allow-root
bower install --allow-root