A backend so simple that it fits in a YAML file
Manifest is the simplest backend you can find:
# manifest/backend.yml
name: Healthcare application π₯
entities:
Doctor π©πΎββοΈ:
properties:
- fullName
- avatar
- { name: price, type: money, options: { currency: EUR } }
belongsTo:
- City
Patient π€:
properties:
- fullName
- { name: birthdate, type: date }
belongsTo:
- Doctor
City π:
properties:
- name
Key features
- β‘ Develop 10x faster comparing to traditional approaches
- π Super-easy syntax easy to read and version control
- ποΈ Self-hosted free open source software
Getting started
Simply run this terminal command to add Manifest locally:
npx add-manifest
Note
Manifest is on BETA. We would love to have your feedback! If something does not work as expected, please open a Github issue. For any other thing, let us know through Theβ¦