https://github.com/hardyscc/workout
https://github.com/hardyscc/workout
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hardyscc/workout
- Owner: hardyscc
- Created: 2019-02-19T09:44:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-27T08:00:39.000Z (over 7 years ago)
- Last Synced: 2025-03-03T14:11:43.484Z (over 1 year ago)
- Language: TypeScript
- Size: 811 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workout (from Ben awad)
Testing project on following technologies.
- typescript
- monorepo web and mobile app
- react-native-web for web UI
- mobx for state management
# Prerequisite
```
npm -g install wml
```
# Setup
## setup auto build against common module
```
yarn install
cd packages/common
yarn watch
```
## start web
```
cd packages/web
yarn start
```
## start ios application
setup wml
```
cd packages/app
wml add ../common/ ./node_modules/@workout/common
wml start
```
start server
```
cd packages/app
yarn start
```
start ios app
```
cd packages/app
yarn ios
```