Skip to content
On this page

Getting Started

Installation

DANGER

Work in progress - i want to create a npx style installer script which creates a repo from a preset.

WIP

sh
npx git clone something installer

File Structure

├─ public
├─ src
│  ├─ assets
│  │  └─ images
│  │  └─ styles
│  ├─ config
│  ├─ http
│  │  └─ actions
│  │  └─ exceptions
│  │  └─ middleware
│  │  └─ requests
│  │  └─ resources
│  ├─ routes
│  ├─ stores
│  ├─ tests
│  ├─ toolkit
│  ├─ ui
│  │  └─ components
│  │  └─ layouts
│  │  └─ pages
│  ├─ env.d.ts
│  └─ main.ts
└─ package.json

Running the Project

Locally

sh
npm run dev

Build

sh
npm run build

Linting / Type-Checking

sh
npm run check