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

https://github.com/aleksandryackovlev/featurist

Service for managing feature toggles
https://github.com/aleksandryackovlev/featurist

feature-flags feature-toggle featurist postgresql tbd typeorm typescript

Last synced: 3 months ago
JSON representation

Service for managing feature toggles

Awesome Lists containing this project

README

          

# Feature toggle service

[![Maintainability](https://api.codeclimate.com/v1/badges/aacbe0c4d537ba4f5298/maintainability)](https://codeclimate.com/github/aleksandryackovlev/featurist/maintainability)
[![Build Status](https://github.com/aleksandryackovlev/featurist/workflows/build/badge.svg)](https://github.com/aleksandryackovlev/featurist/actions)
[![codecov](https://codecov.io/gh/aleksandryackovlev/featurist/branch/master/graph/badge.svg)](https://codecov.io/gh/aleksandryackovlev/featurist)
## Requirements
node.js >= 12

PostgreSQL >= 11

docker
docker-compose
make

## Running the app

```bash
# development
$ make start-dev

# production mode
$ npm run start:prod
```

## Test

```bash
# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov
```