|
@@ -67,3 +67,40 @@ Congratulations ! This user can now connect to Kanboard using his own GitHub acc
|
|
|
In the login page, instead of using the login form, hit the _Login with my GitHub Account_. The first time, the user should give the authorization to the Kanboard application to access public data. The next time, the user will only need to click the link and will be automatically redirected to Kanboard dashboard.
|
|
|
|
|
|
Beware, sometimes Kanboard can fail. Try again, it should work. ^\_^'
|
|
|
+
|
|
|
+## Migrate
|
|
|
+
|
|
|
+New version or new host.
|
|
|
+
|
|
|
+### PostgreSQL
|
|
|
+
|
|
|
+Install Kanboard with the install script. Do not forget to install the database.
|
|
|
+
|
|
|
+Delete the kanboard database with `sudo -u postgres psql -c 'DROP DATABASE kanboard_db'`.
|
|
|
+
|
|
|
+Export the database on the previous version `sudo -u postgres pg_dump kanboard_db > kanboard_db_file`.
|
|
|
+
|
|
|
+Copy the created file on the new host if needed.
|
|
|
+
|
|
|
+Restore the database with `sudo -u postgres createdb -T template0 kanboard_db`.
|
|
|
+Then restore the database with `sudo -u postgres psql --single-transaction kanboard_db < kanboard_db_file`.
|
|
|
+
|
|
|
+NOTICE : a bug was encountered while migrating from 10.10 to 9.6.13. If you get the error about `SEQUENCE ... AS integer`, you simply have to remove every `AS integer` occurrence in the `kanboard_db_file`.
|
|
|
+
|
|
|
+### Data
|
|
|
+
|
|
|
+Zip the folder data in `/www/html/kanboard-1.2.10` with the command `zip -r kanboard_data /var/www/html/kanboard-1.2.10/data`.
|
|
|
+
|
|
|
+Copy the zip file to the new host.
|
|
|
+
|
|
|
+Unzip the file : `unzip kanboard_data.zip`
|
|
|
+
|
|
|
+Move the files : `sudo cp -r var/www/html/kanboard-1.2.10/data/ /var/www/kanboard-1.2.11/`
|
|
|
+
|
|
|
+Change the ownership of the files : `sudo chown -R www-data:www-data data`
|
|
|
+
|
|
|
+Note : _Are avatars now ok ? The first time it didn't work, maybe because the application was launched before complete migration. Or maybe id change._
|
|
|
+
|
|
|
+### Plugins
|
|
|
+
|
|
|
+You have to manually reinstall your plugins.
|