Replies: 9 comments 3 replies
|
Adding a |
|
How would you like to manage environment variables from the Appwrite CLI setup?
My initial idea is to: |
|
For custom install and build scripts, it might be good to expose a hook or so during the lifecycle that allows devs to execute some sort of code. 💯 to capturing logging. Custom runtimes is great, but I feel like it kind of conflicts with OpenRuntimes architecture. If I can bring my own image, there's less need for OpenRuntimes build and whatnot. This makes me think of Gitlab's CI/CD architecture vs Github's Actions. I don't like Github's Actions because it requires you to use their images when running the action. With Gitlab CI/CD, however, I have the flexibility of running with any image. |
|
I would probably also add something similar to firebase CLI / Node Cloud functions... Where you can have main functions project, and its up to you to "flag/export" functions you want to become "cloud functions" |
|
Why by default I can only create functions in 4 languages:
Why I cant create Dart? Why I need to do some extra work to run Dart functions? |
Would this allow using python's pandas? |
Uh oh!
There was an error while loading. Please reload this page.
Appwrite Functions got a HUGE upgrade in version 0.13, introducing a new execution model that improves execution times from as high as 2 seconds, to as low as 1 millisecond.
Our main goal of this version was to improve performance, and code quality. Now, let's focus on some cool features!
Here are some of my ideas:
npm install, to support custom installations. The main idea behind this is to support private repositories. Can anyone experienced confirm if this is a valid solution?npm run build. This would come in handy for runtimes like NodeJS when using TypeScript. Such a project needs to runtscbefore starting to properly build into JavaScript. This would also allow CI/CD-like experience when the build process would be able to download the latest translation files from 3rd party on each build. Can anyone see a problem with this feature?Let's Chat! How can we improve Appwrite Functions? What do you think about my idea? Can you see any problems or do you have an idea how to improve it even more? Can you think of a new idea we could implement?
All reactions