i started having this error immediately when i added a global variable to my appwrite cloud Global variables
TypeScript
type: process.env.FIREBASE_TYPE,
project_id: process.env.FIREBASE_PROJECT_ID,
private_key_id: process.env.FIREBASE_PRIVATE_KEY_ID,
private_key: process.env.FIREBASE_PRIVATE_KEY,
client_email: process.env.FIREBASE_CLIENT_EMAIL,
client_id: process.env.FIREBASE_CLIENT_ID,
auth_uri: process.env.FIREBASE_AUTH_URI,
token_uri: process.env.FIREBASE_TOKEN_URI,
auth_provider_x509_cert_url: process.env.FIREBASE_AUTH_PROVIDER_CERT_URL,
client_x509_cert_url: process.env.FIREBASE_CERT_URL,
universe_domain: process.env.FIREBASE_UNIVERSE_DOMAIN
};```
TL;DR
Error message "error:0909006C:PEM routines:get_name:no start line" occurring when adding global variables in Appwrite Cloud Variables. The issue arose after including a new global variable for Firebase configuration.
Solution: Ensure the Firebase Private Key is correctly formatted with proper start lines.value from Appwrite Global variable is being returned but issues persist...
Recommended threads
- Worker functions stuck on "Fetched 0 fun...
Appwrite Version: 1.9.0 Bug Description: The appwrite-worker-functions container gets stuck in an infinite loop logging "Fetched 0 functions..." while scheduled...
- I am using s3 for app storage but is it ...
_APP_STORAGE_DEVICE=s3 puts everything to the s3 storage but i need to be able to keep the function builds and site in the local and not waste the cloud storage...
- Local Serverless Function Testing: Are D...
I have followed the instructions to get the CLI working, and have been able to log-in, initialize my project, and created a simple Python function, which calls ...