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
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...