MonzimOriginal post
Rank 2: Process
after creating new appwrite instance unable to active dart-2.17, node-18.0 runtime.
Tried to restart and reboot but not solve the issue
Bash
_APP_EXECUTOR_RUNTIME_NETWORK=appwrite_runtimes_APP_FUNCTIONS_ENVS=dart-2.17,node-18.0_APP_FUNCTIONS_INACTIVE_THRESHOLD=60Summary
The user was unable to activate the `dart-2.17` and `node-18.0` runtime on their newly created Appwrite instance. They tried restarting and rebooting, but it didn't solve the issue.
The solution is to update the variable `_APP_FUNCTIONS_ENVS` to `_APP_FUNCTIONS_RUNTIMES`. Here is the correct configuration:
```ini
_APP_EXECUTOR_RUNTIME_NETWORK=appwrite_runtimes
_APP_FUNCTIONS_RUNTIMES=dart-2.17,node-18.0
_APP_FUNCTIONS_INACTIVE_THRESHOLD=60
```