Skip to content

nkapp configure

Interactive wizard to quickly set up a new Nanokit project or add initial services to a nanokit.yml.

Usage

bash
nkapp configure

Description

The configure command is the best way to start a new project from scratch. It guides you through:

  1. Naming: Setting your project identifier.
  2. Services: Defining your initial application containers (e.g., web, api).
  3. Environment: Setting up the default local provider.

By the end of the wizard, Nanokit will create:

  • A nanokit.yml file with your settings.
  • A .nanokit directory for local logs and cache.

Example

bash
$ nkapp configure

🚀 Welcome to Nanokit Configuration Wizard

Project name [my-project]: my-awesome-app
Service names (comma separated, e.g. web, api) [web]: api, worker

 Project my-awesome-app configured!

Tip. After running configure, try nkapp up -e local to see your new stack in action.