Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/charles-dr/contacts-management
A simple contact management application
https://github.com/charles-dr/contacts-management
ci cicd cypress github-actions heroku integration-testing jest keyko react react-testing-library redux redux-thunk tailwindcss typescript unit-testing
Last synced: 10 days ago
JSON representation
A simple contact management application
- Host: GitHub
- URL: https://github.com/charles-dr/contacts-management
- Owner: charles-dr
- Created: 2022-03-25T13:21:12.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T17:07:02.000Z (over 2 years ago)
- Last Synced: 2024-07-30T19:13:47.941Z (5 months ago)
- Topics: ci, cicd, cypress, github-actions, heroku, integration-testing, jest, keyko, react, react-testing-library, redux, redux-thunk, tailwindcss, typescript, unit-testing
- Language: TypeScript
- Homepage: https://contact-management-keyko.herokuapp.com/
- Size: 3.96 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Contact Management App
This is a React application to manage the contacts.
In this application, you can add, update, delete contacts.## Tech stack
- React v17
- Typescript
- Redux Thunk
- Jest
- Cypress## How to run the application
You can run the following commands to start the application and for the unit/integration tests.
```bash
# npm
npm install
npm start # run the application on local
npm run test # run unit testing
npm run test:e2e # integration testing using cypress# yarn
yarn
yarn start # start the application on local
yarn run test # unit testing
yarn test:e2e # integration testing using cypress```
## API Server
Now API server has been deployed on [Heroku](https://dashboard.heroku.com/), https://contacts-api-keyko.herokuapp.com .
This API url is defined in development and production environment.
If you want to run the API server on you local, use [this repository]()https://github.com/business-helper/contacts-server.