
There are some codes, like setting headers and other utils I want to share between functions. Having them in a utils
folder at the root of my project is not working, since only the function's path is deployed. Any ideas how I can reuse some utils?

you'll need to create a symlink in your function folder that points to the common code

for example, common is a symlink here: https://github.com/stnguyen90/places/tree/feature/1.3-upgrade/appwrite-functions/create-comment/src

at the end I went with a single folder for all functions and different entry points
Recommended threads
- Creating Push Notification Results in Fa...
When creating a push notification using the Python API, I get this error for the status of my message. I call it using basically this: ```python def main(conte...
- Functions in Golang - I need help
Hi guys! I am struggling to deploy a rather simple golang function. The deployment log details are very sparse: "failed error code: 524 " or: "Cannot access ...
- Is p-limit compatible with Appwrite?
I have a function that makes asynchronous calls to different Appwrite collections. This is how I make the call: ```js await Promise.allSettled([ ...
