Can appwrite deploy Nodejs or python projects?
Do you have any examples or deployment videos? The official documentation is a bit complex and not very user-friendly for beginners like me
Heyy 👋 Appwrite Functions allow you to deploy your custom code. Those functions are serverless, which you may know from Vercel functions or AWS Lambda functions.
Serverless functions are written in a specific way to allow manybenefits of this technology. One of the downsides of serverless functions is the onboarding, which is necessary to implement functions that can run serverless. You can refer to our docs to start learning: https://appwrite.io/docs/products/functions
With that said, if you just want to take your python code with your own http server as container, Appwrite at the moment does not allow that. Pricing would need to be much different if we wanted to support this, and free tier would be very very tricky.
For doing that, you can use services such as Railway, Heroku or Digital Ocean, which charge per hour of your container being online. It's a different approach compared to serverless. Benefit of serverless is that it can offer free tiers.
Recommended threads
- Oauth issue
Hi, can anyone help me in the Oauth issue, Its working fine in dev but its showing Invalid redirect during production. I have check the redirect url and all. St...
- Google/Apple OAuth to show continue to "...
hi everyone, I am building a react-native app with expo and appwrite. I have setup an OAuth flow with Google and Apple following this doc (https://appwrite.io/b...
- Function permissions
In my app I have a CreateUser flow which makes several documents and at the end uses the functions.createExecution() to call a server-side function to create a ...