
I've spent the better part of the last 2 weeks trying to get Xdebug setup and working with Appwrite locally.
I realized the launch.json
specified in the CONTRIBUTING.md(https://github.com/appwrite/appwrite/blob/main/CONTRIBUTING.md#vs-code-launch-configuration) wasn't quiet right. At least for me.
This is the configuration that was specified.
{
"name": "Listen for Xdebug",
"type": "php",
"request": "launch",
"port": 9005,
"pathMappings": {
"/usr/src/code": "${workspaceRoot}"
}
}
It appears "${workspaceRoot}"
has been deprecated in favour of "${workspaceFolder}"
in VSCode.
I'd like to know if there is a reason "${workspaceRoot}"
is still maintained in the guide, and if "${workspaceFolder}"
is indeed the right one, can I create an issue on it and possible even create a PR to have it updated??
Recommended threads
- Migration from Selfhosted to Selfhosted-...
Hi, i am trying to migrate from one self hosted instance (1.7.4) to another one (1.7.4) via the migration tool. I've tried repeatly, but it won't import all doc...
- Devops and migration schemas management ...
Anyone has suggestions on migration management with appwrite I am going to have one app that will have different isolated deployment. So I need to have updated...
- Invalid `queries` param: Queries must be...
I dont really understand why i am having this issues, ```import { Client, Users, Query } from 'node-appwrite'; export default async ({ req, res }) => { con...
