The backend.yml file
The install script creates a backend.yml
file with the description of your backend. YAML is a very simple markup language.
Let's take this backend.yml
file as an example:
name: A simple blog
entities:
🗒️ Post:
properties:
- title
- content
belongsTo:
- Author
🧑🏽 🦱 Author:
properties:
- name
- email
- bio
- The name property is the name of your app
- The entities property is an object that expects the list of your entities
- And yes, you can use emojis 😎