# Local Development

# TypeRefinary -InnovolveApp

build_status (opens new window) Coverage Status (opens new window) github license (opens new window) github issues (opens new window) github last commit (opens new window) github repo size (opens new window) Gitter (opens new window) Gitter (opens new window)

# Overview

This template should help get you started developing Electron app using Vue 3, Vite, Vuex and primeVue.

VSCode (opens new window) + Volar (opens new window) (and disable Vetur) + TypeScript Vue Plugin (Volar) (opens new window).

  • cypress
  • typedb
  • powershell
  • windows terminal

# Type Support for .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) (opens new window) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode (opens new window) that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

# 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 (opens new window)

NOTE: this does not work yet, feel free to contribute.

npm run test:unit

# Run End-to-End Tests with Cypress (opens new window)

npm run build
npm run test:e2e # or `npm run test:e2e:ci` for headless testing

# Lint with ESLint (opens new window)

npm run lint

# Electron Dev

Run development server and electron UI.

npm run electron:dev

# Build Electron Dist

Compile installable Electron packages.

npm run app:build

# Add Githooks

npx simple-git-hooks

# Directory Structure

VuePress follows the principle of "Convention is better than configuration". The recommended structure is as follows:

Here you will get the components available in source file.

# Customize configuration

# Pipelines

Following pipleines exist for compiling code as its commited

  • Build Branche (build.yml) - Build and Test all branches and create releases.

# Releasing

When you want to create a new release, follow these steps:

  1. Update the version in your project's package.json file (e.g. 2022.02.20)
  2. Commit and sign that change (git commit -s -a -m "chore: release v2022.02.20")
  3. Tag and sign your commit (git tag -s -a v2022.02.20 -m "v2022.02.20"). Make sure your tag name's format is v{YYYY}.{MM}.{DD}. Your workflow will use this tag to detect when to create a release
  4. Push your changes to GitHub (git push && git push --tags)