Initial Upload
Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled

This commit is contained in:
2025-12-17 12:32:50 +13:00
commit 3015f48118
471 changed files with 141143 additions and 0 deletions

76
apps/mobile/eas.json Normal file
View File

@@ -0,0 +1,76 @@
{
"cli": {
"version": ">= 12.0.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": false
},
"android": {
"buildType": "apk"
}
},
"preview": {
"ios": {
"simulator": false,
"autoIncrement": true
},
"android": {
"buildType": "app-bundle"
},
"env": {
"EXPO_PUBLIC_API_URL": "https://tracearr.example.com"
},
"channel": "preview"
},
"preview-apk": {
"distribution": "internal",
"android": {
"buildType": "apk"
},
"channel": "preview"
},
"production": {
"ios": {
"resourceClass": "m-medium"
},
"android": {
"buildType": "app-bundle"
},
"env": {
"EXPO_PUBLIC_API_URL": "https://tracearr.example.com"
},
"channel": "production",
"autoIncrement": true
}
},
"submit": {
"preview": {
"ios": {
"appleId": "connor.gallopo@me.com",
"ascAppId": "6755941553",
"appleTeamId": "6DA3FJF5G5"
},
"android": {
"serviceAccountKeyPath": "./credentials/google-service-account.json",
"track": "internal",
"releaseStatus": "draft"
}
},
"production": {
"ios": {
"appleId": "connor.gallopo@me.com",
"ascAppId": "6755941553",
"appleTeamId": "6DA3FJF5G5"
},
"android": {
"serviceAccountKeyPath": "./credentials/google-service-account.json",
"track": "production"
}
}
}
}