https://github.com/nativescript/nativescript-app-sync-web
Web client for the codepush server
https://github.com/nativescript/nativescript-app-sync-web
Last synced: 8 months ago
JSON representation
Web client for the codepush server
- Host: GitHub
- URL: https://github.com/nativescript/nativescript-app-sync-web
- Owner: NativeScript
- License: mit
- Created: 2019-05-09T07:19:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-27T22:19:24.000Z (about 3 years ago)
- Last Synced: 2024-10-29T15:51:53.171Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 MB
- Stars: 9
- Watchers: 6
- Forks: 7
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# NativeScript AppSync Web [source](https://github.com/EddyVerbruggen/nativescript-app-sync-web)
AppSync Web is the [AppSync Server](https://github.com/EddyVerbruggen/nativescript-app-sync-server)'s web client.
## INSTALL
```shell
$ cd /path/to/nativescript-app-sync-web
$ npm install
```
## CONFIGURE
``` shell
$ vim ./src/config #change URL to production
```
## RUN DEV
```shell
$ npm start
```
## BUILD AND RUN your clone
```shell
$ cd /path/to/nativescript-app-sync-web
$ npm run build -- --release
$ cd ./build
$ npm install
$ node ./server.js
```
## BUILD AND RUN [IN PRODUCTION](https://appsync.nativescript.org)
```shell
$ cd /path/to/nativescript-app-sync-web
$ npm run build -- --release
```
Now commit all files and `git push origin master`, because Heroku deploys upon changes to master.
Check logs with `heroku logs --app nativescript-codepush-web --tail`.
## Based on [this awesome project](https://github.com/lisong/code-push-web)
I had to decide to not officially fork it because of fi. all the Chinese characters
that were hardcoded and needed to be replaced by something I can read myself (English).
## License
MIT License [read](https://github.com/EddyVerbruggen/nativescript-app-sync-web/blob/master/LICENSE.txt)