Jeremy Vasquez
Jeremy Vasquez
Is this still being maintained/reviewed? I might be interested in diving in.
@picklelo Is there a reason why routes convert underscore to hyphens? I see the line of code in app.py line: 1032 ``` route = to_snake_case(route).replace("_", "-") ``` Is there history...
@ChristophJeworutzki I experienced the same issue in the same environment. I manually edited the docker compose config to pull "v0.32" instead of "latest" and it dodges the error. @trungtin how...
@ChristophJeworutzki Failed at v0.33.5 and v0.33.4 as well for me. It seens v0.32 performs the touch. 2024-12-02T21:16:32.441581597Z query: CREATE EXTENSION IF NOT EXISTS "uuid-ossp" 2024-12-02T21:16:32.449675325Z query: SELECT version(); 2024-12-02T21:16:32.454756078Z query:...
OK, I think the issue originates from the recent entrypoint.sh change ` # Check if the initialization has already been done and that we enabled automatic migration if [ "${ENABLE_DB_MIGRATIONS}"...
@ChristophJeworutzki This fixed worked for me and now I am able to run the latest version. Now, the only difference between my local one click deployment and the coolify deployment...
Found a fix to my webhook issue. It seems webhooks depend on the "worker" container that was not a part of the default coolify deployment. This is the docker-compose I...