Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rafaelcamargo/veedgee-web
Veedgee's Web Client
https://github.com/rafaelcamargo/veedgee-web
Last synced: 10 days ago
JSON representation
Veedgee's Web Client
- Host: GitHub
- URL: https://github.com/rafaelcamargo/veedgee-web
- Owner: rafaelcamargo
- License: mit
- Created: 2024-03-02T23:20:53.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-12T02:33:33.000Z (7 months ago)
- Last Synced: 2024-04-12T09:49:51.870Z (7 months ago)
- Language: HTML
- Size: 355 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Veedgee Web
> Veedgee's Web Client[![CircleCI](https://dl.circleci.com/status-badge/img/gh/rafaelcamargo/veedgee-web/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/rafaelcamargo/veedgee-web/tree/main)
[![Coverage Status](https://coveralls.io/repos/github/rafaelcamargo/veedgee-web/badge.svg?branch=main)](https://coveralls.io/github/rafaelcamargo/veedgee-web?branch=main)## 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/veedgee-web.git
```3. Go to the project directory
``` bash
cd veedgee-web
```4. Install the project dependencies
``` bash
npm install
```5. Check your changes running the command below and accessing `http://localhost:9000`:
``` bash
npm run start
```## Tests
1. In case you have changed any website behavior, ensure that all changes are covered with automated tests:
``` bash
npm run test
```2. You can optionally generate a coverage report while running tests:
``` bash
npm run test -- --coverage
```