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
- MariaDB refuses to connect to appwrite
Earlier, I tried updating my Appwrite version from 18.1.x to the latest release because my Flutter package required it to function properly. I used the official...
- executeFunction intermittently throws Fo...
Environment: Flutter app using the Appwrite Flutter SDK, calling executeFunction for [describe endpoint, e.g. live-stream-related function]. *Description*: Int...
- Console display all Databases as TablesD...
While looking at an issue with <@1231860789355347971> we saw that the console was displaying ALL databases as `TablesDB` even if the real type in the API is `le...