Skip to main content
Please ensure the following packages are installed:You have a terminal configured:

Installation Options

Install Fjall globally to use it across all your projects:
npm install -g @fjall/cli
After installation, you can use fjall commands from anywhere:
fjall --version
fjall create app

Project Installation

Install Fjall as a project dependency:
  1. Initialize your project (if needed):
    npm init -y
    
  2. Install Fjall CLI:
    npm install --save-dev @fjall/cli
    
  3. Add to package.json scripts (optional):
    {
      "scripts": {
        "fjall": "fjall"
      }
    }
    
  4. Run commands:
    npx fjall create app
    # or if you added the script:
    npm run fjall create app
    

Verify Installation

Confirm that Fjall was installed correctly:
# For global installation:
fjall --version

# For project installation:
npx fjall --version
You should see the version number and a list of available commands.

Next Steps

Now that Fjall is installed, choose your path:

Quick Start: Deploy an Application

Ready to deploy your first application? Jump straight to: Create Application - Get your app running in minutes Perfect for: Single AWS accounts, quick prototypes, or standalone applications

Full Setup: Build an Organisation

Setting up a multi-account AWS environment? Start with: Organisation Setup - Configure your AWS organisation from scratch Perfect for: Enterprises, multi-environment setups, or teams needing SSO and account separation
Not sure which to choose? Start with deploying an application - you can always add organisation structure later!