Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat/#14] 배포 스크립트 작성 #17

Merged
merged 11 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: configure eas init
  • Loading branch information
seungdeok committed Dec 20, 2024
commit 4d762925c9d3db078fe29ec732744a8ab600db8a
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
EAS_PROJECT_ID=<EAS_PROJECT_ID>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ yarn-error.*

# local env files
.env*.local
.env

# typescript
*.tsbuildinfo
Expand Down
55 changes: 55 additions & 0 deletions app.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import "dotenv/config";

export default {
expo: {
name: "RNBoilerplate",
slug: "RNBoilerplate",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/images/icon.png",
scheme: "myapp",
userInterfaceStyle: "automatic",
newArchEnabled: true,
ios: {
supportsTablet: true,
entitlements: {
"com.apple.developer.networking.wifi-info": true
}
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/images/adaptive-icon.png",
backgroundColor: "#ffffff"
}
},
web: {
bundler: "metro",
output: "static",
favicon: "./assets/images/favicon.png"
},
plugins: [
"expo-router",
[
"expo-splash-screen",
{
image: "./assets/images/splash-icon.png",
imageWidth: 200,
resizeMode: "contain",
backgroundColor: "#ffffff"
}
]
],
experiments: {
typedRoutes: true
},
extra: {
router: {
origin: false
},
eas: {
projectId: process.env.EAS_PROJECT_ID
}
},
owner: "moeum"
}
};
44 changes: 0 additions & 44 deletions app.json

This file was deleted.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.3.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
Expand Down
Loading