
Ionic Backand Starter
Simple Starter with Powerful Backend
$0.00
Details
- Version:
- 1.2
- Ionic:
- 1.x
- Platforms:
- iOS, Android
- Released:
- 5 years ago
- Updated:
- 4 years ago
- Category:
- Starters
- Tags:
- ,
Leveraging Backand, this super-easy Ionic starter provides a boatload of functionality including a database API, security, payment and email integration.
Click here for Ionic 2 starter
Getting Started:
1 - To run starter run ionic start:
```
ionic start myApp https://github.com/backand/backand-ionic-social cd myApp
```
2 - Install Backand
```
bower install backand-angular1-sdk bower install socket.io-client
```
3 - Install cordova plugins.
```
cordova plugin add cordova-plugin-inappbrowser ionic plugin add https://github.com/apache/cordova-plugin-whitelist.git
```
4 - Run with ionic serve function
```
ionic serve
```
5 - Login with Social or default user and password:
user: ionic@backand.com
pwd: backand
Enjoy your mobile application, with backand at server side and full CRUD commands to server.
Setting up your own realtime Backand application
Want to customize data model or change authorization? create a free application at backand.comReplace the app's Config section at /js/app.js file with your new app parameters:
```
BackandProvider.setAppName('Your-App-Name');
BackandProvider.setSignUpToken('Your-SignUp-Token');
BackandProvider.setAnonymousToken('Your-Anonymous-Token');
```