https://github.com/recheck-io/recheck-mobile-native
ReCheck - native mobile application
https://github.com/recheck-io/recheck-mobile-native
cordova vue vuejs
Last synced: 7 months ago
JSON representation
ReCheck - native mobile application
- Host: GitHub
- URL: https://github.com/recheck-io/recheck-mobile-native
- Owner: ReCheck-io
- Created: 2020-06-18T12:24:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-06T21:18:53.000Z (11 months ago)
- Last Synced: 2025-02-11T13:32:10.013Z (9 months ago)
- Topics: cordova, vue, vuejs
- Language: Vue
- Homepage:
- Size: 104 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# recheck-mobile-native
### To build project you need env file
*Each (production/development) script load it's env variables for itself*
`.env.production.local` for production settings
`.env.development.local` for development settings
```bash
# Example `.env.production.local` file:
VUE_APP_LOGGER_MODE=production # Log status: production(disabled) - debug(enabled) (default: 'production')
VUE_APP_NETWORK=ae # Blockchain Network for init function (default: 'ae')
VUE_APP_API_URL= # API endpoint for init function (default: '')
```
## Project setup
```sh
### Prepare project
### Isntall all dependencies both for Vuejs and Cordova project
npm install && cd src-cordova && npm install
### Prepare Cordova project (install platforms and plugins)
cd src-cordova && cordova prepare
### Scripts
### Compiles and hot-reloads for development
npm run serve
### Compiles and minifies for production
npm run build
### Lints and fixes files
npm run lint
### Cordova part, serve in android emulator
npm run cordova-serve-android
### Cordova part, build for android (needs to be signed)
npm run cordova-build-android
### Cordova part, serve in ios emulator
npm run cordova-serve-ios
### Cordova part, build for ios (needs to be signed)
npm run cordova-build-ios
```