react native front end app for tally application
- npm version is v9.6.7, node version is v18.17.0
- Check your node version is
18.17.0
by runningnode --version
.- You can install the correct node version using any node package manager. For example, download
nvm
here. Then runnvm install 18.17.0
. Finally, make sure to set the node version if necessary withnvm use 18.17.0
- If you are using a different manager, make sure to set the correct version (ex.
nodenv local 18.17.0
).
- You can install the correct node version using any node package manager. For example, download
- Check your npm version is
9.6.7
by runningnpm --version
. The npm version is usually determined by your node version. - If you're running android:
- Download
Android Studio
- Create a
local.properties
file withinandroid
and setsdk.dir
variable according to this StackOverflow answer.
- Download
- Run
npm install
npm run start
: start appnpm run android
: start android app- Make sure you have an emulator running (Android Studio > AVD > Select play on a device)
npm run ios
: start ios appnpm run web
: start web app
To run with the server, make sure you have tally-backend setup and running (npm run start-dev
). The server needs to be up and running
prior to making API calls.