-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinfo.json
More file actions
48 lines (48 loc) · 1.08 KB
/
info.json
File metadata and controls
48 lines (48 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "supabase",
"version": "1.0.0",
"description": "Open source Firebase alternative with PostgreSQL database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, and Storage",
"author": "FxSupport Plugin",
"license": "MIT",
"homepage": "https://supabase.com",
"repository": "https://github.com/supabase/supabase",
"category": "database",
"tags": [
"database",
"postgresql",
"authentication",
"realtime",
"storage",
"api"
],
"requirements": {
"os": ["linux"],
"arch": ["x86_64", "aarch64"],
"memory": "2GB",
"disk": "10GB",
"docker": "20.10.0+"
},
"ports": [
{
"port": 8000,
"protocol": "tcp",
"description": "API Gateway"
},
{
"port": 5432,
"protocol": "tcp",
"description": "PostgreSQL Database"
}
],
"commands": {
"install": "./install.sh",
"start": "./start.sh",
"stop": "./stop.sh",
"restart": "./restart.sh",
"uninstall": "./uninstall.sh",
"status": "./status.sh"
},
"environment": {
"SUPABASE_DIR": "/opt/supabase"
}
}