to run erlang portion for dev: rebar3 shell
right now, that will launch localhost:8080 saying "hello world". stay tuned...
mac setup:
- install xcode via the mac app store
- install android studio, see react-native docs
# these adapted from react native getting-started: https://facebook.github.io/react-native/docs/getting-started.html
brew install yarn
brew install watchman
brew tap AdoptOpenJDK/openjdk
brew cask install adoptopenjdk8 # has to be jdk8!
yarn global add react-native-cli
yarn global add expo-cli
# if you want to work on the react-native-macos ui; note that react-native-macos is deprecated
yarn global add react-native-macos-cli
uis:
- android:
cd milkui; react-native run-android
- ios:
cd milkui; react-native run-ios
- web:
cd milkui; expo start --web
- mac:
cd *_rnmac; react-native-macos run-macos
backend:
- todo