From 27a12145926969eacfc18e3b033a1cad81ecb637 Mon Sep 17 00:00:00 2001 From: Luna-Klatzer Date: Wed, 26 Jun 2024 08:17:17 +0200 Subject: [PATCH] docs: Added section "Setting up a new project with `kipper new`" --- src/docs/next/quickstart.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/docs/next/quickstart.md b/src/docs/next/quickstart.md index c122ca08a..bbeea3ba0 100644 --- a/src/docs/next/quickstart.md +++ b/src/docs/next/quickstart.md @@ -197,17 +197,18 @@ npx kipper

-Also, make sure to try and run a Kipper file after the installation to ensure the Kipper compiler and Node runtime are fully working: - -- Use `run` and directly execute: - ```bash - kipper run main.kip - ``` -- Or use `compile` and invoke `node` (or `ts-node` if the target is `ts`) - ```bash - kipper compile main.kip --target=js - node ./build/main.js - ``` +### Setting up a new project with `kipper new` + +To create a new Kipper project using the CLI, you can use the Kipper project setup wizard. This will create a new +project directory with the necessary files and folders for a Kipper project. + +To create a new project, run the following command: + +```bash +kipper new +``` + +You may specify a location, but if not specified, the project will be created in the current working directory. ## Importing Kipper as a module