sortofsleepy
CCConvex Community
•Created by sortofsleepy on 2/3/2025 in #support-community
Issues running Convex Python client behind Docker
Hmmm.. interesting I wonder why I can't get it to work. But thanks for putting your test up, I'll take a look in a bit. Appreciate the help, I'll mark this as resolved and I'll just use the HTTP version of the client until I can figure out what the heck is happening on my end.
As for repro from the repository I setup
- It's using Docker compose - in the
As for repro from the repository I setup
- It's using Docker compose - in the
compose.yml
file, first fix the path under "volumes" so that it's an absolute path that points to where app.py
is (could just point to that same folder)
- run docker compose up
(it can also be docker-compose up
depending on how old your docker version is)
- Flask server should be running at 0.0.0.0:80 and Docker is exposing 8080 to map back to the Flask server
Side details.
- Trying to eventually run this through Cloudflare tunnels over Docker swarm.16 replies
CCConvex Community
•Created by sortofsleepy on 2/3/2025 in #support-community
Issues running Convex Python client behind Docker
Yea, same result, also times out.
This is what I tried
(
links:get
is just supposed to fetch data from a table)16 replies
CCConvex Community
•Created by sortofsleepy on 2/3/2025 in #support-community
Issues running Convex Python client behind Docker
Ah, interesting. I guess I'll try another sample at some point, I was just trying to integrate your initial test here.
That said I'm pretty sure I did try
client.query
(as that's what I'm doing in the app I'm trying to run) but I believe it also failed. Let me double check16 replies
CCConvex Community
•Created by sortofsleepy on 2/3/2025 in #support-community
Issues running Convex Python client behind Docker
Sorry about that, should be public now
16 replies
CCConvex Community
•Created by sortofsleepy on 2/3/2025 in #support-community
Issues running Convex Python client behind Docker
Hey @Lee , looking more at this now and your test, did you happen to try behind a server as well? I wonder if that might be the differentiating factor between our two tests, I'm looking to run things on a Flask/Gunicorn server behind Docker.
In any case, I tried again combining your test with a very barebones representation of what I'm trying to run and uploaded that here
https://gitlab.com/sortofsleepy/convex-test
tldr' it kinda worked? It worked at least once or twice, which made me think my db setup was the issue but after more testing the requests started to fail more often; even then for the successful tests, it still took quite awhile for the request to complete.
16 replies
CCConvex Community
•Created by sortofsleepy on 2/3/2025 in #support-community
Issues running Convex Python client behind Docker
Hey Lee, thanks for the quick response and the sample; yea, I'm a bit stumped myself; your conclusion was pretty much mine and I thought things should just operate on whatever ports are already open but 🤷♂️
Didn't see your message in time to provide a sample myself, but I'll experiment in a little bit(need more coffee) and try to test things out again and report back.
16 replies
CCConvex Community
•Created by sortofsleepy on 10/6/2024 in #support-community
npx convex import - always pushes to the same/wrong project
Thanks for the notes @lee
I'm not sure what happened but things seem to be working now after trying things after completely nuking my project files and restarting everything (not a big deal, just starting things anyways). In any case...
1. I did catch the global env variable being set earlier but I was still seeing the same activity for some reason.
2. I didn't think to try that but will keep in mind next time
3. Env variables looked fine and appeared to be pointing to project B
Anyways, thanks for the input!
4 replies
CCConvex Community
•Created by sortofsleepy on 10/2/2024 in #support-community
Trying to generate a OpenAPI C client - repeatedly fails to generate "any_type.h"
Apologies! Totally didn't see this till now but I think I'm fine using the Rust library I patched together. The generated C libraries from that seems to work for my purposes.
Appreciate the help!
19 replies
CCConvex Community
•Created by sortofsleepy on 10/2/2024 in #support-community
Trying to generate a OpenAPI C client - repeatedly fails to generate "any_type.h"
Thanks for the link @dowski ! I didn't know this project exists. Bookmarking for later.
I actually managed to cobble something together; after testing my duct-tapped library using your folks' Rust crate it looks like it'll work well enough for my purposes. Not sure how to mark this as "closed" but feel free to close this.
But that said, I think it would still be great to figure out why the openapi cli isn't generating the
any_type.h
header.19 replies
CCConvex Community
•Created by sortofsleepy on 10/2/2024 in #support-community
Trying to generate a OpenAPI C client - repeatedly fails to generate "any_type.h"
Sorry for not clarifying. OpenAPI does offer the cli via npm
https://openapi-generator.tech/docs/installation#npm
But if one of the other versions is known to be more reliable I'd consider trying that(NPM was the most convenient option)
19 replies
CCConvex Community
•Created by sortofsleepy on 10/2/2024 in #support-community
Trying to generate a OpenAPI C client - repeatedly fails to generate "any_type.h"
ok, I think I have something working in Rust but still need to test. That said it's a bit more verbose than I would have liked.
Still open to any ideas on how to generate via OpenAPI or where to look next.
19 replies
CCConvex Community
•Created by sortofsleepy on 10/2/2024 in #support-community
Trying to generate a OpenAPI C client - repeatedly fails to generate "any_type.h"
I'm just using whatever the latest one is thats on NPM.
Full error is
fatal error: any_type.h: No such file or directory
19 replies
CCConvex Community
•Created by sortofsleepy on 10/2/2024 in #support-community
Trying to generate a OpenAPI C client - repeatedly fails to generate "any_type.h"
Ah... that's a good idea! Can't believe I didn't think of that.
I actually already have some idea of how that might work but open to any concrete instructions you might have dowski
19 replies