Quickstart
Install Atlas Framework and ship a Hello World page in under five minutes.
Photo by Christopher Gower on Unsplash.
Atlas is a fictional application framework used to demonstrate versioned product documentation in Knowybase. This quickstart gets a local project running against the
3.x channel.Version channel
These docs describe Atlas 3.x. Older guides live under Version 2 archives in your release switcher once you publish versioned releases.
Install the CLI
bashExample
npm create atlas@latest my-app
cd my-app
npm run devCreate your first route
phproutes/web.php
Route::get('/', function () {
return atlas_view('welcome', [
'title' => 'Hello from Atlas 3',
]);
});- Install the CLI and generate a project skeleton.
- Start the local server and open the welcome page.
- Replace the sample route with your first feature endpoint.
book
Installation
Supported runtimes, PHP versions, and Node tooling.
folder
Project structure
How Atlas organizes apps, modules, and config.
api
Routing
Declarative routes, middleware, and versioned APIs.
Atlas sample content is intentionally fictional. Use it to explore theme layout, versioning UX, and rich block rendering.
Updated Aug 5, 2026
