Skip to content

Commit

Permalink
fix(Yarn-lock): Fix node package issues that causes build to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
akshayd2020 committed Oct 12, 2023
1 parent afdcbc3 commit 4bb16de
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 76 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,26 @@ An all-encompassing end-of-life planning app.

### Running

1. **Create client build**
```bash
cd client
eas login
eas build:configure
# ios
eas build -p ios --profile development
# android
eas build -p android --profile development
```
2. **Download the build and drag into simulator**

1. **Start the client**
```bash
cd client
yarn start
npx expo start --dev-client
```

* You can then open the app in the Expo app on your phone or in a simulator.
* You can then open the app in the Expo app in the simulator.

2. **Start Postgres**
- MacOS
Expand Down
2 changes: 1 addition & 1 deletion client-new/src/screens/auth/AccessScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SafeAreaView } from "react-native-safe-area-context";
export default function AccessScreen() {
return (
<SafeAreaView>
<Text>Access Screen, Welcome to Legacy!</Text>
<Text>Access Screen, Welcome to Legacy! This is Akshay</Text>
</SafeAreaView>
);
}
Loading

0 comments on commit 4bb16de

Please sign in to comment.