STALL.ONE
<< Back to SnapNGo
DOCS // DRAFT · QUICK START

Quick start

Install, scaffold a spine, add a module, bring the stack up. Commands below are the intended day-one path (illustrative until the public CLI ships).

Project
SnapNGo
Type
Docs · draft
Audience
Engineers · DX
DOCS CLI QUICK_START

Install & scaffold (illustrative)

# install (illustrative)
curl -fsSL https://stall.one/snapngo/install | sh

# scaffold a spine
snapngo init my-stack
cd my-stack

# add modules
snapngo add auth
snapngo add gateway
snapngo add catalog   # example domain module

# run
snapngo up
snapngo health

What you get

  • Project spine (compose/env layout, defaults)
  • Gateway + auth when those modules are added
  • Domain modules with declared ports and env keys
  • Health checks per service

Day-one checks

# typical local ports (platform reference)
# gateway :3000 / :3100   auth :3001 / :3101
curl -s http://localhost:3100/health
curl -s http://localhost:3101/health
Next

After health is green, open the developer surface for module contract details and the white paper for topology.