Skip to content

Commit 76c2945

Browse files
committed
dotenv
1 parent 9f110d5 commit 76c2945

File tree

5 files changed

+29
-6
lines changed

5 files changed

+29
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
.env
23
.expo/
34
npm-debug.*
45
*.jks

Readme.md

+8
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,11 @@ Beta Workflow
3535
2. Commit and merge to `beta` branch.
3636
3. Github action will publish to `beta` channel.
3737
4. Clients built with `beta` channel will receive the udpate.
38+
39+
### Build
40+
41+
Prerequisite: `SENTRY_AUTH_TOKEN` in `.env`
42+
43+
```
44+
npx expo run:ios
45+
```

app.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@
4949
"file": "sentry-expo/upload-sourcemaps",
5050
"config": {
5151
"organization": "justin-wyne",
52-
"project": "scorepad",
53-
"authToken": "7a50634826e0498b904b70730a05b39c54413ab1f5d9439badb4dbffe7acfc11"
52+
"project": "scorepad"
5453
}
5554
}
5655
]

package-lock.json

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@
1313
"@react-navigation/stack": "^6.2.2",
1414
"@sentry/react-native": "4.9.0",
1515
"colorsheet": "^1.0.5",
16+
"dotenv": "^16.0.3",
1617
"expo": "^47.0.13",
1718
"expo-application": "~5.0.1",
1819
"expo-constants": "~14.0.2",
20+
"expo-dev-client": "~2.0.1",
1921
"expo-device": "~5.0.0",
2022
"expo-screen-orientation": "~5.0.1",
23+
"expo-splash-screen": "~0.17.5",
2124
"expo-status-bar": "~1.4.2",
2225
"expo-updates": "~0.15.6",
2326
"react": "18.1.0",
@@ -40,9 +43,7 @@
4043
"redux": "^4.2.0",
4144
"redux-persist": "^6.0.0",
4245
"sentry-expo": "~6.0.0",
43-
"uuid": "^8.3.2",
44-
"expo-splash-screen": "~0.17.5",
45-
"expo-dev-client": "~2.0.1"
46+
"uuid": "^8.3.2"
4647
},
4748
"devDependencies": {
4849
"@babel/core": "^7.19.3",
@@ -52,4 +53,4 @@
5253
"private": true,
5354
"name": "scorepad-react-native",
5455
"version": "1.0.0"
55-
}
56+
}

0 commit comments

Comments
 (0)