Search Criteria
Package Details: tandoor-recipes 2.6.9-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/tandoor-recipes.git (read-only, click to copy) |
|---|---|
| Package Base: | tandoor-recipes |
| Description: | Application for managing recipes, planning meals, building shopping lists and much much more. |
| Upstream URL: | https://github.com/TandoorRecipes/recipes |
| Keywords: | recipes tandoor |
| Licenses: | GPL |
| Conflicts: | tandoor-recipes |
| Provides: | tandoor-recipes |
| Submitter: | L0ric0 |
| Maintainer: | L0ric0 |
| Last Packager: | L0ric0 |
| Votes: | 1 |
| Popularity: | 0.004262 |
| First Submitted: | 2025-10-05 17:49 (UTC) |
| Last Updated: | 2026-07-07 19:44 (UTC) |
Dependencies (5)
- nodejs (nodejs-gitAUR, nodejs-lts-hydrogenAUR, python-nodejs-wheelAUR, nodejs-lts-iron, nodejs-lts-jod, nodejs-lts-krypton) (make)
- postgresql (postgresql-12AUR, postgresql13AUR, postgresql-gitAUR, postgresql15-docsAUR, postgresql15AUR, postgresql16-docsAUR, postgresql16AUR, postgresql17-docsAUR, postgresql17AUR, postgresql18-docsAUR, postgresql18AUR) (make)
- postgresql-libs (postgresql-libs-12AUR, postgresql13-libsAUR, postgresql-libs-gitAUR) (make)
- python-virtualenv (make)
- yarn (yarn-corepackAUR, yarn-berryAUR) (make)
Latest Comments
luziferius commented on 2026-08-16 12:52 (UTC)
Since the package does not automatically apply migrations after upgrading, and I struggled for hours getting the migrations to apply to the actual production database and not create a new SQLite3 db each time I try, here's the steps to actually apply them:
manage.pyreads the configuration from the environment. To get the variables fromtandoor.confto the environment, enabling the allexport option is required before sourcingtandoor.conf.Without this enabled, the variables are defined, but
manage.pywill silently not find them and use the defaults, and thus use the wrong database. Because it creates a new SQLite3 database in that case, it even states that it successfully applied migrations, leading to a long-winded witch hunt. Hope this helps anyone struggling withHTTP 500 Internal Server Errors after upgrading.