Set up a Database Storage for Recipes
A Web application consists of data and a user interface. The data is stored in a database. Setting up a database is a complex task, which involves buying a server, installing database software, installing schema, and managing your data. Angular makes your database creation process extremely easy. All you need to do is to create an account with us and reserve a database name.
- Sign up or login.
- Once logged-in you will create a new library and database for storing data. For example, you can create myData database. Keep in mind that the library name must be unique across all of our users, therefore your first choice may already be taken.
- After you create a database we will provide you with a JavaScript snippet that needs to be included on every HTML template. Here is a typical JavaScript snippet, notice your library and database name embedded in the URL:
<script type="text/javascript" src="http://mylibrary.getangular.com/angular-1.0a.js#database=myDatabase"></script> - While you are logged-in, notice that there are administrative tasks that allow you to manage user access and permissions.
- Below is a "Hello world" snippet which you can use to get started.
Hello world snippet:
Next >>> Set up a form for a recipe