Atlas

Atlas manages Firecracker virtual machines on servers. It is the lowest layer of a Frappe hosting platform; sites, benches, IAM, and billing live in separate apps on top.

Install Atlas

bench get-app https://github.com/adityahase/atlas

Add the Frappe Gems badge to your README

Maintain Atlas? Paste this into your README:

[![Listed on Frappe Gems](https://frappegems.com/api/method/frappe_gems.seo.badge?app=adityahase%2Fatlas)](https://frappegems.com/gems/apps/adityahase/atlas)

About Atlas

Atlas

Atlas

Atlas manages Firecracker virtual machines on servers. It is the lowest layer of a Frappe hosting platform; sites, benches, IAM, and billing live in separate apps on top. The spec in [spec/](./spec/README.md) is the source of truth — read it before changing anything here. ## Install ```bash cd $PATH_TO_YOUR_BENCH bench get-app $URL_OF_THIS_REPO --branch main bench install-app atlas ``` ## Bootstrap Stand up Atlas on a fresh site — configure settings, provision a server, sync the base image, and (optionally) bake a golden image, stand up the proxy, and issue a wildcard cert — in one command. See [BOOTSTRAP.md](./BOOTSTRAP.md) for the necessary steps and recommended sizing. ## Verify locally The e2e harness reads its inputs from one JSON fixture, not site config — `$ATLAS_E2E_CONFIG` (default `~/.cache/atlas-e2e/config.json`). Write the DigitalOcean credentials and SSH key there once, then run the shared-droplet suite on an `atlas.tests.local` site: ```bash mkdir -p ~/.cache/atlas-e2e cat > ~/.cache/atlas-e2e/config.json <<'JSON' { "do_token": "", "ssh_key_id": "", "ssh_private_key_path": "~/.ssh/atlas-test" } JSON bench --site atlas.tests.local execute atlas.tests.e2e.run_all ``` The run takes ~9 minutes and creates one billable droplet that is deleted at the end. The full fixture shape (TLS, Scaleway, region/size overrides) is documented in [`atlas/tests/e2e/_config.py`](./atlas/tests/e2e/_config.py); see [spec/README.md](./spec/README.md#testing) for the full test entry points. ## Contributing Install [pre-commit](https://pre-commit.com/#installation) and enable it: ```bash cd apps/atlas pre-commit install ``` It runs ruff, eslint, prettier, and pyupgrade. ## License agpl-3.0 --- - `atlas/` — Frappe app source - `scripts/` — shell scripts uploaded over SSH and run on the server - `spec/` — operator-facing specification (source of truth) - `llm/` — Claude-facing reference material

Related Developer Tools apps for Frappe & ERPNext

  • Frappe — Low code web framework for real world applications, in Python and Javascript
  • Frappe Docker — Docker environment for developing, deploying, and running Frappe applications (ERPNext and custom apps) in production and development
  • Builder — Craft beautiful websites effortlessly with an intuitive visual builder and publish them instantly
  • Bench — CLI to manage Multi-tenant deployments for Frappe apps
  • Frappe Ui — A set of components and utilities for rapid UI development
  • Press — Full service cloud hosting for the Frappe stack - powers Frappe Cloud
  • Gameplan — Open Source Discussions Platform for Remote Teams
  • Doppio — A Frappe app (CLI) to magically setup single page applications and Vue/React powered desk pages on your custom Frappe apps.