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

https://github.com/robertmain/meal-plan

Meal planning app written in @nestjs to facilitate meal planning and generate a shopping list
https://github.com/robertmain/meal-plan

Last synced: 4 months ago
JSON representation

Meal planning app written in @nestjs to facilitate meal planning and generate a shopping list

Awesome Lists containing this project

README

          

# Meal Planner API

[![Build Status](https://travis-ci.org/robertmain/meal-plan.svg?branch=master)](https://travis-ci.org/robertmain/meal-plan) [![codecov](https://codecov.io/gh/robertmain/meal-plan/branch/master/graph/badge.svg)](https://codecov.io/gh/robertmain/meal-plan)

Meal planning API based on [NestJS](http://github.com/nestjs/nest). Currently WIP.

## Installation

```bash
$ npm install
```

## Running the app

```bash
# Swagger docs available from /api

# development
$ npm run start

# watch mode
$ npm run 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
```