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.Next up
After Hello World, jump into Guides for testing, jobs, middleware, and performance — new in documentation release 2.0.0.
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.
- Add a feature test from Testing your app.
book
Installation
Supported runtimes, PHP versions, and Node tooling.
folder
Testing
Feature tests and CI habits.
api
Background jobs
Queue work off the request.
Atlas sample content is intentionally fictional. Use it to explore theme layout, versioning UX, and rich block rendering.
Updated Aug 5, 2026
