Get reminded on a periodic basis!
This repository houses the front-end client for the Impulze reminder application.
The application uses native browser notifications to notify you about you reminders.
This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.
First, you'll have to install packages by running:
npm installFor local development, you will need to connect to an instance of the API, found in the old (legacy) impulze project. There, the script is labeled as server. Then, you need to set the .env variable like this:
VUE_APP_API_URL=http://localhost:3000An example is already present in the repository.
To run the project for local development, run:
npm run devYou can also use yarn if you so prefer.
To build the project for production, run:
npm run buildFor running the tests, run:
npm run testor do the same, but in watch mode:
npm run test:watchTo run the linter, run
npm run lintor to fix the code:
npm run lint:fixSince TypeScript cannot handle type information for .vue imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue imports (for example to get props validation when using manual h(...) calls), you can enable Volar's .vue type support plugin by running Volar: Switch TS Plugin on/off from VSCode command palette.

