summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-30 13:41:08 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-30 13:41:08 +0200
commitebc613fee1ec59642b87a075da4d0a97b3aa1ad7 (patch)
tree4382997efbda79479c55d8a3656b18113351f75b
parentae63532503eb0b5c7a60d18ef17504c0632d508d (diff)
Use Expo router env
-rw-r--r--README.md2
-rw-r--r--app/(tabs)/index.tsx5
-rw-r--r--babel.config.js11
-rw-r--r--env.d.ts5
-rw-r--r--package-lock.json20
-rw-r--r--package.json1
6 files changed, 3 insertions, 41 deletions
diff --git a/README.md b/README.md
index 8503337..4833bbf 100644
--- a/README.md
+++ b/README.md
@@ -2,5 +2,5 @@
```
# .env
-API_URL=
+EXPO_PUBLIC_API_URL=
```
diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx
index 46a690f..c631903 100644
--- a/app/(tabs)/index.tsx
+++ b/app/(tabs)/index.tsx
@@ -4,7 +4,6 @@ import ParallaxScrollView from '@/components/ParallaxScrollView';
import { ThemedText } from '@/components/ThemedText';
import { ThemedView } from '@/components/ThemedView';
import React, { useState, useEffect } from 'react';
-import { API_URL } from '@env';
import AsyncStorage from '@react-native-async-storage/async-storage';
@@ -28,7 +27,7 @@ export default function HomeScreen() {
}
try {
- const response = await fetch(`${API_URL}/graphql`, {
+ const response = await fetch(`${process.env.EXPO_PUBLIC_API_URL}/graphql`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
@@ -108,7 +107,6 @@ export default function HomeScreen() {
style={styles.formInput}
onChangeText={setUsername}
value={username}
- placeholder="Username"
/>
</View>
<View>
@@ -117,7 +115,6 @@ export default function HomeScreen() {
style={styles.formInput}
onChangeText={setPassword}
value={password}
- placeholder="Password"
secureTextEntry
/>
</View>
diff --git a/babel.config.js b/babel.config.js
index 8bcefc5..9ecdc7a 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -2,15 +2,6 @@ module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
- plugins: [
- ["module:react-native-dotenv", {
- "envName": "APP_ENV",
- "moduleName": "@env",
- "path": ".env",
- "safe": false,
- "allowUndefined": true,
- "verbose": false
- }]
- ]
+ plugins: []
};
};
diff --git a/env.d.ts b/env.d.ts
deleted file mode 100644
index 4c6321d..0000000
--- a/env.d.ts
+++ /dev/null
@@ -1,5 +0,0 @@
- declare module '@env' {
- export const API_URL: string;
- export const CAZZO: string;
- }
-
diff --git a/package-lock.json b/package-lock.json
index 405151c..210cbfc 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -23,7 +23,6 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
- "react-native-dotenv": "^3.4.11",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
@@ -15692,17 +15691,6 @@
}
}
},
- "node_modules/react-native-dotenv": {
- "version": "3.4.11",
- "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz",
- "integrity": "sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==",
- "dependencies": {
- "dotenv": "^16.4.5"
- },
- "peerDependencies": {
- "@babel/runtime": "^7.20.6"
- }
- },
"node_modules/react-native-gesture-handler": {
"version": "2.16.2",
"resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz",
@@ -29799,14 +29787,6 @@
}
}
},
- "react-native-dotenv": {
- "version": "3.4.11",
- "resolved": "https://registry.npmjs.org/react-native-dotenv/-/react-native-dotenv-3.4.11.tgz",
- "integrity": "sha512-6vnIE+WHABSeHCaYP6l3O1BOEhWxKH6nHAdV7n/wKn/sciZ64zPPp2NUdEUf1m7g4uuzlLbjgr+6uDt89q2DOg==",
- "requires": {
- "dotenv": "^16.4.5"
- }
- },
"react-native-gesture-handler": {
"version": "2.16.2",
"resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.16.2.tgz",
diff --git a/package.json b/package.json
index 82778e0..b366c93 100644
--- a/package.json
+++ b/package.json
@@ -30,7 +30,6 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
- "react-native-dotenv": "^3.4.11",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",