-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheas.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy patheas.json
File metadata and controls
54 lines (54 loc) · 1.43 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
49
50
51
52
53
54
{
"cli": {
"version": ">= 3.0.0",
"appVersionSource": "remote"
},
"build": {
"base": {
"node": "20.11.0",
"yarn": "1.22.22",
"env": {
"GOOGLE_MAPS_API_KEY": "${GOOGLE_MAPS_API_KEY}",
"EXPO_PUBLIC_PROD_API_URL": "${EXPO_PUBLIC_PROD_API_URL}",
"EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY": "${EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY}",
"EXPO_PUBLIC_AWS_ACCESS_KEY_ID": "${EXPO_PUBLIC_AWS_ACCESS_KEY_ID}",
"EXPO_PUBLIC_AWS_SECRET_ACCESS_KEY": "${EXPO_PUBLIC_AWS_SECRET_ACCESS_KEY}",
"EXPO_PUBLIC_AWS_REGION": "eu-west-1",
"EXPO_PUBLIC_AWS_S3_BUCKET_NAME": "${EXPO_PUBLIC_AWS_S3_BUCKET_NAME}",
"JWT_SECRETE": "${JWT_SECRETE}",
"JWT_TOKEN_EXPIRE_AFTER": "1d"
}
},
"preview_debug": {
"extends": "base",
"android": {
"distribution": "internal",
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"simulator": true,
"buildConfiguration": "Debug"
},
"channel": "preview"
},
"development": {
"extends": "base",
"developmentClient": true,
"distribution": "internal",
"channel": "development"
},
"preview": {
"extends": "base",
"distribution": "internal",
"channel": "preview"
},
"production": {
"extends": "base",
"autoIncrement": true,
"channel": "production"
}
},
"submit": {
"production": {}
}
}