Once you have created the starter project using the Quickstart guide, you will see two directories with the following structure:Documentation Index
Fetch the complete documentation index at: https://world.dev/llms.txt
Use this file to discover all available pages before exploring further.
project-name
├── demo-game # a shard
│ ├── component
│ ├── event
│ ├── system
│ └── main.go
└── chat # another shard
├── component
├── event
├── system
└── main.go
This is the basic structure of a project with multiple Cardinal shards.
The component, event, and system directories are where you will be spending most of your time.
The main.go file is where everything is wired up together and is the entry point to starting your shard.
In the next page, you will learn what goes into each of these files and directories.