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 installerFile 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.jsonRunning the Project
Locally
sh
npm run devBuild
sh
npm run buildLinting / Type-Checking
sh
npm run check