-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config.js
executable file
·61 lines (60 loc) · 1.51 KB
/
app.config.js
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
55
56
57
58
59
60
61
import 'dotenv/config';
export default {
expo: {
name: "Cluey",
slug: "cluey",
scheme: "cluey",
version: "0.0.9",
main: "index.js",
orientation: "portrait",
icon: "./assets/images/icon.png",
userInterfaceStyle: "automatic",
splash: {
image: "./assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#FFBF00"
},
assetBundlePatterns: [
"**/*"
],
web: {
favicon: "./assets/images/favicon.png",
//bundler: "metro"
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "Allow Cluey to access your photos",
"cameraPermission": "Allow Cluey to access your camera"
}
],
],
extra: {
app: {
secretKeyPhrase: process.env.SECRET_KEY_PHRASE,
},
eas: {
projectId: process.env.EXPO_PROJECT_ID,
},
firebase: {
apiKey: process.env.API_KEY,
authDomain: process.env.AUTH_DOMAIN,
projectId: process.env.PROJECT_ID,
storageBucket: process.env.STORAGE_BUCKET,
messagingSenderId: process.env.MESSAGING_SENDER_ID,
appId: process.env.APP_ID,
measurementId: process.env.MEASUREMENT_ID
},
google: {
webClientId: process.env.WEB_CLIENT_ID,
webClientSecret: process.env.WEB_CLIENT_SECRET,
redirectUri: process.env.REDIRECT_URI,
},
openai: {
apiKey: process.env.OPENAI_API_KEY,
orgId: process.env.OPENAI_ORG_ID,
}
}
}
}