I went down a couple different rabbit holes and didn’t really do this one - as I’m already running nginx and didn’t want to mess around with installing an apache server running alongside it. My short notes below are mostly unrelated.

Source

Very cool

Set up Vikunja

Self hosted task management as an alternative to Todoist - I’m hopeful, but this isn’t really there yet.

  • https://vikunja.io/docs/cli/#using-the-cli-in-docker

  • sudo docker exec [container-name] [executable-name] [command] [flags]

  • e.g. sudo docker exec vikunja-vikunja-1 /app/vikunja/vikunja user list

  • -it flags to make interactive

  • alias above command (minus user list) to vikunja

  • vikunja user delete -n [id]

relevant flags indocker-compose.yml:

  • VIKUNJA_SERVICE_ENABLEREGISTRATION: false
  • VIKUNJA_MIGRATION_TODOIST_ENABLE: 1

EOF