installation error
Hello,
I have a problem during the installation.
I'm following these steps:
https://github.com/debiki/talkyard-prod-one/tree/ty-prod-one-v1
I made some changes in the .env and the script as well.
Changed
RELEASE_BRANCH=ty-prod-one-v1
and changed this line in the script because it tries to find -v1-
if [ -z "$(echo "$RELEASE_BRANCH" | grep -e '-v1-')" ]; then
to
if [ -z "$(echo "$RELEASE_BRANCH" | grep -e '-v1')" ]; then
But I'm still getting error message:
2026-03-04T00:52:55+00:00 upgrade-script: Checking for latest version...
fatal: 'origin/ty-prod-one-v1' is not a commit and a branch 'ty-prod-one-v1' cannot be created from it
the problem is this line:
/usr/bin/git checkout -B "$RELEASE_BRANCH" --track "origin/$RELEASE_BRANCH"
If I remove the version checking at all, I've got this error:
"docker.io/debiki/talkyard-rendr:v0.2025.002-8454ad2d5": docker.io/debiki/talkyard-rendr:v0.2025.002-8454ad2d5:
What do I need to change?
Yeah, when I manually replaced the version to v1.2026.000-6268b781a I could run the script.
KajMagnus @KajMagnus2026-03-04 08:20:11.616Z2026-03-04 08:36:49.897ZSorry! The only release branch that exists right now, for v1, is
tyse-v1-dev. So, if you change from...-regularto...-devin the.envfile, it'll work.Then it'll look like this:
# Which branch in the ./versions submodule to pull from to get the latest version number. # Should be: tyse-v1-regular (there's also tyse-v1-dev and tyse-v0-*, but don't use). RELEASE_BRANCH=tyse-v1-devHowever! I haven't released v1 yet. It's almost completely done, just some code review and double checks left to do. Will take 2 weeks (wall clock time) I think.
I feel a bit silly. I think I could have made it more clear in the README that v1 is currently just a preview. (Also, I forgot to mention the
tyse-v1-devbranch.) Sorry for wasting some of your time.But what about installing v0? I think that'd be a waste of time. Upgrading from v0 to v1 takes a little while, it's better to wait until v1 is available.
Edit: Now I've updated the
README.mdand made it more clear that it's a preview, and mentioned the-devbranch.
In reply tooszy⬆:KajMagnus @KajMagnus2026-03-04 08:36:17.179ZIf you do want to try out v1, even though it's a preview, then, feedback would be very welcome!
For example, if you have a look at: https://github.com/debiki/talkyard-prod-one/blob/ty-prod-one-v1/docker-compose.yml — any thoughts? (How would that setup work together with other software & servers you might already be using?)
