Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelcamargo/kobbogo-web
The simplest todo list ever made
https://github.com/rafaelcamargo/kobbogo-web
javascript todo-list vue
Last synced: 10 days ago
JSON representation
The simplest todo list ever made
- Host: GitHub
- URL: https://github.com/rafaelcamargo/kobbogo-web
- Owner: rafaelcamargo
- Created: 2022-07-01T18:04:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-03T19:00:00.000Z (over 2 years ago)
- Last Synced: 2023-02-27T12:32:49.943Z (over 1 year ago)
- Topics: javascript, todo-list, vue
- Language: JavaScript
- Homepage: https://kobbogo.web.app/
- Size: 1.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kobbogo Web
> The simplest todo list ever made[![CircleCI](https://dl.circleci.com/status-badge/img/gh/rafaelcamargo/kobbogo-web/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/rafaelcamargo/kobbogo-web/tree/master)
[![Coverage Status](https://coveralls.io/repos/github/rafaelcamargo/kobbogo-web/badge.svg?branch=master)](https://coveralls.io/github/rafaelcamargo/kobbogo-web?branch=master)## Contributing
1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.
2. Clone the repo:
``` bash
git clone [email protected]:rafaelcamargo/kobbogo-web.git
```3. Go to the project directory
``` bash
cd kobbogo-web
```4. Install the project dependencies
``` bash
npm install
```5. If you want to just build the project, run:
``` bash
npm run build
```6. Otherwise, run:
``` bash
npm run start
```The app will be running on `http://localhost:9000`.
## Tests
1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```2. You can optionally generate coverage report after running tests:
``` bash
npm run test -- --coverage
```