Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 639 Bytes

development.md

File metadata and controls

48 lines (30 loc) · 639 Bytes

Development

This document describes how to setup the development environment for timetrack.

Prerequisites

Setup

  1. Clone the repository:
git clone [email protected]:misteaverco/timetrack.git
  1. Install the dependencies:
npm install
  1. Start the application:
npm run start

Profit! 🎉

Update npm packages

To update the npm packages, run:

npm run update-interactive

Lint & Format

To lint and format the code, run:

npm run lint && npm run format