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
- Host: GitHub
- URL: https://github.com/tomislavsmit/task-manager
- Owner: TomislavSmit
- Created: 2024-10-13T16:36:57.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-01-06T17:28:41.000Z (9 months ago)
- Last Synced: 2025-02-02T03:18:19.289Z (8 months ago)
- Topics: kanban-board-application, react, typescript, unit-testing
- Language: TypeScript
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```