# Supabase 使用 ## Functions 使用 初始化 ```sh npx supabase init ``` 新增一个函数 ```sh npx supabase functions new hello-world ``` 登录 ```sh npx supabase login ``` 发布函数 ```sh npx supabase functions deploy hello-world --project-ref tybqiaghnxeylhltjqeh ``` 删除函数 ```sh supabase functions delete hello-world ```