📄️ Installation
This guide walks you through setting up a new BunSane project from scratch.
📄️ Your First App
Let's build a running BunSane server. By the end of this page, you will have a working API with a GraphQL playground.
📄️ Your First Component
Components are the building blocks of data in BunSane. Every piece of information in your app -- a user's name, an email address, a password -- is stored as a component attached to an entity.
📄️ Your First Archetype
In the previous section you defined components -- individual pieces of data. But in practice, you usually work with a group of components together. A "Todo" is not just a title or a status; it is a title and a description and a completed flag, all at once.
📄️ Your First Service
You have components and an archetype. Now it is time to expose them through a GraphQL API. In BunSane, you do this with a Service -- a class that holds your business logic and uses decorators to turn methods into GraphQL operations.