Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T01:20:01.000Z (almost 2 years ago)
- Last Synced: 2023-05-14T19:27:01.289Z (over 1 year 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
```