Aleš
ZZerops
•Created by Amos on 4/1/2025 in #💪・community-support
Postgres vector extension
just as the standard credentials
17 replies
ZZerops
•Created by Amos on 4/1/2025 in #💪・community-support
Postgres vector extension
they are available in the databases' env variables
17 replies
ZZerops
•Created by Amos on 4/1/2025 in #💪・community-support
Postgres vector extension
you can use super user creadentials
17 replies
ZZerops
•Created by minsomai on 3/28/2025 in #💪・community-support
local search for logs?
I think we could add search, there's even param in API for it already I think.
But generally it's best to enable log forwarding and forward logs to some free third party tool like betterstack or papertrail. Or even spin up ELK stack and save logs there. There's no competing with proper logging tools.
3 replies
ZZerops
•Created by vavo on 3/22/2025 in #💪・community-support
MongoDB support
We could add Mongo service with the version prior to the license change, but that would be pretty outdated by now, so not the best option either.
7 replies
ZZerops
•Created by vavo on 3/22/2025 in #💪・community-support
MongoDB support
That's unfortunate 😦 too bad Mongo decided to go this route.. but then again, Elastic did as well and they eventually reverted back to the open source license, so maybe one day.
7 replies
ZZerops
•Created by vavo on 3/22/2025 in #💪・community-support
MongoDB support
We can try getting it up to date https://github.com/fxck/recipe-ferretdb/blob/main/zerops.yml
7 replies
ZZerops
•Created by vavo on 3/22/2025 in #💪・community-support
MongoDB support
Hey, Mongo license doesn't allow us to provide it as a service, running it yourself on a container is not an option due to volatility of containers (you could utilize a shared storage which mounts a persistent disc to a container, but it's still not a solution you want for something like a database).
FerretDB (https://www.ferretdb.com) seems like a good option, it essentially builds Mongo compatible API on top of Postgres, we had an example working on some of their older versions, but haven't tried since.
7 replies
ZZerops
•Created by minsomai on 3/18/2025 in #💪・community-support
UI improvement request
Yea I'll look into it
2 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
docs page in progress, some raw info - https://gist.github.com/jansaidl/d94fd84fc45f1ff6e3528e86e3ba03b4
52 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard

52 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
it's on code review now, hopefully we'll release it soon
52 replies
ZZerops
•Created by vavo on 3/11/2025 in #💪・community-support
Gitlab integration: expired token
push doesn't even need projectId anymore
6 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
ok, we got it implemented, just need to properly test it so it doesn't break anything on production
52 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
looks like we found a decent solution, we'll get it done @Amos
52 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
I'll see if we can't move it in priority list, I've been wanting to add wildcard support for ages
52 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
or rather within two months we want to push out bunch of big things this being one of them
52 replies
ZZerops
•Created by bravisek on 11/18/2024 in #💪・community-support
Let's encrypt for subdomain wildcard
it's one of the priorities, hopefully within two months
52 replies
ZZerops
•Created by Dally on 2/25/2025 in #💪・community-support
pnpm killed
@Michal Saloň @Matěj Pavlíček
21 replies
ZZerops
•Created by EdwardD on 2/24/2025 in #💪・community-support
Issues with pip
Claude says:
It looks like you're encountering a Python installation error. The issue stems from trying to install a package that contains syntax that's incompatible with your Python 3.12 installation.
The specific error is in the logging package that's being installed. It's using old Python 2.x style exception syntax (
raise NotImplementedError, 'emit must be implemented'
) which is invalid in Python 3. In Python 3, the correct syntax would be raise NotImplementedError('emit must be implemented')
.
Here's what's happening:
1. You're trying to install a package using pip
2. During installation, there's a syntax error in a file called logging/__init__.py
3. This appears to be a custom logging
package (not the standard library one) that's likely written for Python 211 replies