A mobile app to manage Arches resources
yarn install
# with hot reload but without cordova enabled
yarn run dev
or
# without hot reload but with cordova enabled
cordova run browser
cordova run ios|browser
# to run in android, I had to run from directly from android studio
# install dependencies
yarn install
# add platforms for various simulators
cordova platform add ios --save
cordova platform add android --save
cordova platform add browser --save
# run app in device simulator
cordova run ios|browser
# to build and run in a simulator
cordova-run-ios
cordova-run-android
# to run in android, I had to run from directly from android studio
# serve with hot reload at localhost:8080
yarn run dev
# build for production with minification
yarn run build
# build for production and view the bundle analyzer report
yarn run build --report
# run unit tests - not available yet
yarn run unit
# run e2e tests - not available yet
yarn run e2e
# run all tests - not available yet
yarn test
If you are signing into an application on an Android emulator, you will need to use http://10.0.2.2:[port]
rather than http://localhost:[port]
. Also, be sure to add '10.0.2.2' to your project's ALLOWED_HOSTS
setting.
For a detailed explanation on how things work, check out the guide and docs for vue-loader.