Skip to content

backand/backand-ionic-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

backand-ionic-starter

Create mobile application with ionic and backand.

1- To run starter, download zip and run ionic start:

ionic start myApp https://github.com/backand/backand-ionic-starter
cd myApp

2 - Run with ionic serve function

ionic serve

3 - Login as guest or with user and password:

user: ionic@backand.com

pwd: backand

4 - Enjoy your mobile application, with backand at server side and full CRUD commands to server.

5 - Want to customize data model or change authorization? create a free personal application at backand.com

6 - Use following model (or just keep the default Model):

[
  {
    "name": "items",
    "fields": {
      "name": {
        "type": "string"
      },
      "description": {
        "type": "text"
      },
      "user": {
        "object": "users"
      }
    }
  },
  {
    "name": "users",
    "fields": {
      "email": {
        "type": "string"
      },
      "firstName": {
        "type": "string"
      },
      "lastName": {
        "type": "string"
      },
      "items": {
        "collection": "items",
        "via": "user" 
      }
    }
  }
]

7 - change application name in /js/app.js file at line 26 to your new application name.

About

create mobile application with ionic and backand

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •