An open API service indexing awesome lists of open source software.

https://github.com/tomislavsmit/task-manager

Kanban board application in React and TS with json-server API
https://github.com/tomislavsmit/task-manager

kanban-board-application react typescript unit-testing

Last synced: 8 months ago
JSON representation

Kanban board application in React and TS with json-server API

Awesome Lists containing this project

README

          

# React + TypeScript + Vite + json-server

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

## Installation

Install dependencies after cloning the project

```bash
cd task-manager
npm install
```

## Environment Variables

To run this project, you will need to create .env file and copy .env.example content to it. It should look like this:

`VITE_API_URL=http://localhost:3000/`

Run the following to run react application and json-server that serves the data

```bash
npm run start
```

## Running Tests

To run tests, run the following command

```bash
npm run test
```