
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
- Updating console to 1.8
Hey! Does anyone know how to update the appwrite console only? I am using console 1.7.4 but it has UI/UX issues 🙁
- `access_denied_to_user` - push new branc...
Why pushig new branch is not allowed? ``` git push origin fix-no_issue_id-fix_variable_name remote: {"auth_status":"access_denied_to_user","body":"Permission t...
- Having errors migrating to cloud
Project will not migrate compeltely
