Set up vikunja with debian package: Difference between revisions

From AcrodusWiki
(Created page with "=Vikunja Setup with Debian= Download debian file from vikunja download page with wget `wget <url>` Install with dpkg `dpkg -i *.deb` Enable and start the systemd service There is one change that is required to the config. Change the timezone from GMT to GB to stop the internal server error warnings. If you have not done this before creating a new user then you must run the following commands. To start the sqlite cli `sudo sqlite3` To connect to the correct database...")
 
Line 16: Line 16:
`.open ./vikunjer.db`
`.open ./vikunjer.db`
To reset user timezone
To reset user timezone
`update users set timezone = null`
<pre>update users set timezone = null</pre>

Revision as of 14:05, 12 August 2025

Vikunja Setup with Debian

Download debian file from vikunja download page with wget `wget <url>`

Install with dpkg `dpkg -i *.deb`

Enable and start the systemd service

There is one change that is required to the config. Change the timezone from GMT to GB to stop the internal server error warnings. If you have not done this before creating a new user then you must run the following commands.

To start the sqlite cli `sudo sqlite3` To connect to the correct database `.open ./vikunjer.db` To reset user timezone

update users set timezone = null