https://github.com/stephencoady/cordova-dev-app
https://github.com/stephencoady/cordova-dev-app
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stephencoady/cordova-dev-app
- Owner: StephenCoady
- Created: 2018-11-13T16:16:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-14T14:24:01.000Z (over 7 years ago)
- Last Synced: 2025-07-18T20:04:56.880Z (11 months ago)
- Language: Java
- Size: 39 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Cordova Dev App
### Pre-requisites
cordova:
```
npm i -g cordova@8.1.2
```
A local copy of the Aerogear javascript sdk:
```
git clone git@github.com:aerogear/aerogear-js-sdk.git
cd packages/sync
npm run build
npm link .
```
This repo consists of two parts, the server and the mobile app (cordova).
### Running the server
```
cd ./server
docker-compose up -d
npm install
npm run start
```
### Running the App
#### Web View:
```
cd ./app
npm install
npm run start
```
#### iOS
```
cd ./app
npm install
npm run start-ios
```
#### Android
```
cd ./app
npm install
npm run start-android
```