Skip to content

billyLumberjack/report-ionic-client

This branch is 1 commit ahead of master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

415be27 · Oct 10, 2023
Apr 14, 2018
Apr 6, 2020
Feb 1, 2023
Sep 27, 2017
Apr 13, 2020
Apr 11, 2020
Sep 30, 2019
Apr 29, 2020
May 2, 2020
May 2, 2020
May 2, 2020
Sep 28, 2019
Oct 10, 2023
Apr 14, 2018

Repository files navigation

Branches naming convention

wip       Works in progress; stuff I know won't be finished soon
feat      Feature I'm adding or expanding
bug       Bug fix or experiment
junk      Throwaway branch created to experiment

Useful commands

List emulators

ionic cordova emulate --list --no-native-run                            # List any OS
cordova run --list --no-native-run                                      # List any OS
cordova run <platform> --list --no-native-run                           # List specific OS

Start local emulator

ionic cordova emulate ios --target="iPhone-SE" --prod --no-native-run   #runs with PROD config 
ionic cordova emulate ios --target="iPhone-SE" --no-native-run          #runs with DEV config

ionic cordova emulate android --target=e78ab88d --prod --no-native-run  #runs with PROD config   
ionic cordova emulate android --target=e78ab88d --no-native-run         #runs with DEV config   

Deploy on physical device

ionic cordova run android --device

Build for browser

ionic cordova build browser

Run in browser

ionic cordova run browser