I have a Dart project folder that has 3 cloud functions in it which have all been deployed. I mistakenly deleted the project while trying to delete something else. I did SHIFT+DEL so it's not in my recycle bin 😭 😭 I want to know if there is a way I can retrieve the files from each cloud function on Appwrite. 🥹
You can try digging through some of your docker volumes. Maybe /tmp folder. The thing is, dart is compiled, so the source code might be gone
😭
Hopefully, you check your code into version control next time
Ikr. I was just procrastinating this time around. Now, I've learnt the hard way
Look through your functions volume and try to find a folder that matches the id of your function deployment
I will. Thanks
Recommended threads
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Project in AppWrite Cloud doesn't allow ...
I have a collection where the data can't be opened. When I check the functions, there are three instances of a function still running that can't be deleted. The...