I try to deploy a function using Appwrite CLI but it says: appwrite functions createDeployment ^
--functionId=xyz^
--code="." ^
--activate
error: unknown command 'createDeployment'
(Did you mean create-deployment?)
bash: --functionId=xyz: command not found
bash: --code=.: command not found
bash: --activate: command not found
TL;DR
The developer is trying to deploy a function using Appwrite CLI but encountering an error with the command syntax. The correct command should be `appwrite functions create-deployment` instead of `createDeployment`. The error messages are due to incorrect command formatting.Recommended threads
- Function domain not available
Hello, even tho in docs you clearly describe that every function has its domain, I can not see it anywhere in any of my projects. How do I reveal the url of th...
- Inquiry: How to Reduce Cold Start Durati...
Hey! I was using Python for the function runtime, but after reading that Go has the fastest runtime, I switched my code over to Go. However, I'm still seeing co...
- After a GET request is passed to functio...
Create execution in the console can normally retrieve the get parameters。WHy?