Hello all, every time I upgrade Appwrite server I had an error:
unexpected character "." in variable name near [...]```
To solve this, I always need to:
- Edit `.env` file
- Change this line
//[...] _APP_VCS_GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY----- XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX -----END RSA PRIVATE KEY-----" //[...]
By this:
//[...] _APP_VCS_GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----" //[...]
- Run upgrade command
- Run migration command
- Edit `.env` file
- Revert back changes to original private VCS Github key
- Run `docker compose up -d`
This is quite annoying, did you know why I always need to change my private key? It seems it does'nt support line break in `.env`file...
Thanks !
It seems when the error occur at first time, the .env
file is modified to _APP_VCS_GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----
(Note that "
is missing at the end)
uhh so is your private key in 1 line or multiple lines?
Multiple line like this:
//[...]
_APP_VCS_GITHUB_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY----- <--- break line
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX <--- break line
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX <--- break line
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX <--- break line
-----END RSA PRIVATE KEY-----"
//[...]
It should be single line
Oh well nice ! Thanks !
[SOLVED] Failed to install Appwrite dockers after each upgrade
Recommended threads
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...
- Use different email hosts for different ...
Hello, I have 2 projects and i want to be able to set up email templates in the projects. Both projects will have different email host configurations. I see ...
- Migrate from cloud to localhost
Hello everyone. I need to migrate my test project from cloud to localhost, however it seems that this is possible only if a self-hosted appwrite instance it's h...