Skip to content

Commit

Permalink
Merge branch 'develop' into feat/melhoria-perfil
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciused26 authored Dec 17, 2024
2 parents 2c10b1c + 92e7260 commit 3dc3df6
Show file tree
Hide file tree
Showing 26 changed files with 1,895 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
EXPO_PUBLIC_API_URL=http://192.168.1.3
EXPO_PUBLIC_API_URL=http://192.168.1.19
EXPO_PUBLIC_API_USUARIO_PORT=3001
EXPO_PUBLIC_API_FORUM_PORT=3002
EXPO_PUBLIC_API_SAUDE_PORT=3003
Expand Down
42 changes: 41 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,44 @@ ios
android

/.idea
/reports
/reports
# @generated expo-cli sync-b5df6a44d8735348b729920a7406b633cfb74d4c
# The following patterns were generated by expo-cli

# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

# dependencies
node_modules/

# Expo
.expo/
dist/
web-build/

# Native
*.orig.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision

# Metro
.metro-health-check*

# debug
npm-debug.*
yarn-debug.*
yarn-error.*

# macOS
.DS_Store
*.pem

# local env files
.env*.local

# typescript
*.tsbuildinfo

# @end expo-cli
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ docker compose -f docker-compose.test.yml up
![IOS](https://github.com/fga-eps-mds/2023-2-GEROcuidado-Front/assets/51385738/1a9562d5-dec5-485d-999a-59f2f16e2427)
### Android
![Android](https://github.com/fga-eps-mds/2023-2-GEROcuidado-Front/assets/51385738/9a6d23c0-2f88-42de-ac26-719e6faa9fd3)
### 📝 Notes
### 📝 Notes.

- [Expo Router: Docs](https://expo.github.io/router)
- [Expo Router: Repo](https://github.com/expo/router)
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@
"origin": false
},
"eas": {
"projectId": "d0700b57-06bb-420d-b975-fcd5d3193360"
"projectId": "e30305f3-1909-4fb7-ad3d-41cd29eb1963"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/7028a81c-adee-41de-91a7-b7e80535a448"
"url": "https://u.expo.dev/e30305f3-1909-4fb7-ad3d-41cd29eb1963"
}
}
}
9 changes: 6 additions & 3 deletions eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@
"android": {
"buildType": "apk",
"developmentClient": true
}
},
"channel": "development"
},
"preview": {
"android": {
"buildType": "apk"
}
},
"channel": "preview"
},
"production": {
"android": {
"buildType": "app-bundle"
}
},
"channel": "production"
}
},
"submit": {
Expand Down
8 changes: 8 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { registerRootComponent } from 'expo';

import App from './App';

// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
// the environment is set up appropriately
registerRootComponent(App);
7 changes: 7 additions & 0 deletions metro.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Learn more https://docs.expo.io/guides/customizing-metro
const { getDefaultConfig } = require('expo/metro-config');

/** @type {import('expo/metro-config').MetroConfig} */
const config = getDefaultConfig(__dirname);

module.exports = config;
Loading

0 comments on commit 3dc3df6

Please sign in to comment.