Skip to content

point-hub/docuremind-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pointhub App Starter

This template should help get you started developing with Vue 3 in Vite.

Features

UI Components

We are using Pointhub App Components for designin UI & UX https://dev.pointhub.net/library/papp/

Installation

We are using Bun as a drop-in replacement for Node.js

Install Node.js

We still need to install Node.js because Cypress requires Node.js in order to install. Follow the instructions on https://nodejs.org/en/download/package-manager to download and install Node.js

Install Bun

Install Bun a JavaScript runtime

Linux / MacOS

curl -fsSL https://bun.sh/install | bash

Windows

powershell -c "irm bun.sh/install.ps1 | iex"

Install dependencies

bun install --frozen-lock

Install Cypress (optional)

You can skip this step, if you already have cypress on your system

./node_modules/.bin/cypress install

Compile and Hot-Reload for Development

bun run dev

Type-Check, Compile and Minify for Production

bun run build

Run Unit Tests with Vitest

bun run test:unit

Run End-to-End Tests with Cypress

bun run test:e2e:dev

This runs the end-to-end tests against the Vite development server. It is much faster than the production build.

But it's still recommended to test the production build with test:e2e before deploying (e.g. in CI environments):

bun run build
bun run test:e2e

Lint with ESLint

bun run lint