Docs
Overview
Getting Started
Getting Started
WARNING
✨ To start a new project, use dobs, a lightweight and stabilized version of zely.
In this chapter, we will introduce how to create your first zely app.
#Using tool
You can create zely application easily with zely-cli.
- Download the template using the
zely-clitool:
Terminal
npx zely-cli init- Install Dependencies:
Terminal
yarn- Run the app:
Terminal
yarn dev#Manual Installation
You can also add zely to a project that already exists.
Enter the command below:
npm
npm install --save-dev zelyAdd the configuration file (zely.config.ts).
zely.config.ts
import { defineConfig } from "zely";
export default defineConfig({
// options
});