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

https://github.com/glorious-codes/glorious-taslonic-website

Taslonic's website
https://github.com/glorious-codes/glorious-taslonic-website

Last synced: 5 months ago
JSON representation

Taslonic's website

Awesome Lists containing this project

README

          

# Taslonic's Website

[![CircleCI](https://circleci.com/gh/glorious-codes/glorious-taslonic-website.svg?style=svg)](https://circleci.com/gh/glorious-codes/glorious-taslonic-website)
[![Coverage Status](https://coveralls.io/repos/github/glorious-codes/glorious-taslonic-website/badge.svg?branch=master)](https://coveralls.io/github/glorious-codes/glorious-taslonic-website?branch=master)

## Contributing

1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.

2. Clone the repo:
``` bash
git clone git@github.com:glorious-codes/glorious-taslonic-website.git
```

3. Go to the project directory
``` bash
cd glorious-taslonic-website
```

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
```