Skip to content

Removed yarn, trying to revive the backend #12

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
echo GOOGLE_IOS_ID=${{ secrets.GOOGLE_IOS_ID }} >> .env
echo GOOGLE_EXPO_ID=${{ secrets.GOOGLE_EXPO_ID }} >> .env

yarn workspace @solve/client install
yarn workspace @solve/client build:web
npm run -w @solve/client install
npm run -w @solve/client build:web
cp -r ./packages/client/web-build/index.html ./packages/client/web-build/200.html
yarn surge packages/client/web-build $domain --token ${{ secrets.SURGE_TOKEN }}
npx surge packages/client/web-build $domain --token ${{ secrets.SURGE_TOKEN }}
api:
name: Deploy to API Deta
runs-on: ubuntu-latest
Expand Down
8 changes: 4 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Problem-solving and decision-making for individual health and well-being.
<img width="1440" alt="Screenshot" src="https://raw.githubusercontent.com/w8r/solve/develop/packages/presentation/public/screens/platforms.png">

```
yarn
yarn server
yarn tunnel
yarn client
npm i
npm run server
npm run tunnel
npm run client
```

## License
Expand Down
Loading