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...") |
No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 12: | Line 12: | ||
To start the sqlite cli | To start the sqlite cli | ||
<pre>sudo sqlite3</pre> | |||
To connect to the correct database | To connect to the correct database | ||
<pre>.open ./vikunjer.db</pre> | |||
To reset user timezone | To reset user timezone | ||
<pre>update users set timezone = null</pre> | |||
Latest 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