Blame

e45038 Qwas 2024-05-06 15:33:03
新增 supabase
1
# supabase 使用
2
3
## functions 使用
4
5
初始化
6
7
```sh
8
npx supabase init
9
```
10
11
新增一个函数
12
13
```sh
14
npx supabase functions new hello-world
15
```
16
17
登录
18
19
```sh
20
npx supabase login
21
```
22
23
发布函数
24
25
```sh
26
npx supabase functions deploy hello-world --project-ref tybqiaghnxeylhltjqeh
27
```
28
29
删除函数
30
31
```sh
32
supabase functions delete hello-world
33
```