๐Ÿ“ฆ tacman / hello-dagger

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching
๐Ÿ“ฅ Clone https://github.com/tacman/hello-dagger.git
HTTPS git clone https://github.com/tacman/hello-dagger.git
SSH git clone git@github.com:tacman/hello-dagger.git
CLI gh repo clone tacman/hello-dagger
Tac Tacelosky Tac Tacelosky Initial commit 571ac16 1 months ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .vscode
๐Ÿ“ cypress
๐Ÿ“ public
๐Ÿ“ src
๐Ÿ“„ .eslintrc.cjs
๐Ÿ“„ .gitignore
๐Ÿ“„ .prettierrc.json
๐Ÿ“„ cypress.config.ts
๐Ÿ“„ env.d.ts
๐Ÿ“„ index.html
๐Ÿ“„ package-lock.json
๐Ÿ“„ package.json
๐Ÿ“„ README.md
๐Ÿ“„ tsconfig.app.json
๐Ÿ“„ tsconfig.json
๐Ÿ“„ tsconfig.node.json
๐Ÿ“„ vite.config.ts
๐Ÿ“„ vitest.config.ts
๐Ÿ“„ README.md

hello-dagger

This is an example application for use with the Dagger Quickstart. It uses the Vue 3 + Vite template, with minor modifications.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Run End-to-End Tests with Cypress

npm 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):

npm run build
npm run test:e2e

Lint with ESLint

npm run lint