TL;DR
Issue: Error occurring when trying to connect Appwrite with GitHub.
Solution: Ensure the GitHub private key is formatted correctly and follow the documentation provided for integration.
Also, check the GitHub credentials to ensure they are correct.Looks like your github credentials aren't correct
all fine i am using docker
i am following this doc https://appwrite.io/integrations/deployments-github
Do you have the key between "" and single-lined with \n?
Try running this:
TypeScript
CODE='
if (openssl_pkey_get_private(getenv("_APP_VCS_GITHUB_PRIVATE_KEY")) === false) {
echo "Invalid Private Key\n";
exit(1);
} else {
echo "Valid Private Key\n";
exit(0);
}'
docker compose exec appwrite php -r "$CODE"
Recommended threads
- Guideline of AI
Hello everyone, I’m planning to specialize in Artificial Intelligence (AI) and I’m currently looking for guidance from someone with strong experience in the fi...
- Authentication on custom Websocket Serve...
Hi, I want to use a custom Websocket Server (using Bun) for my application. However I cant really figure out authentication on custom servers. Session cookies ...
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...