# ows-marketing

ows-marketing microservice supports operations related to Marketing Program Information for OA and Workstation. Today, Marketing Program Information can be associated to a Vendor, Artist, Release and Track from OA.

ows-marketing endpoints support:
* retrieving Marketing Program Information for a Release.
* saving Marketing Program Information for a Release.
* updating Marketing Program Information for a Release.
* deleting marketing Program Information for a Release.


## Getting Started

### Installation

```bash
$ cd ows-product
$ make pip_dev
```

```bash
$ cp .env.shadow .env
```

### Dev

```bash
$ make dev
```

### Unit Tests

```bash
$ make test_unit
```

### Linting

```bash
$ make lint
```

### Integration Tests

```bash
$ make test_integration
```

### Docker

```bash
$ make up_dev                   # `docker compose up` local dev service
$ make down_dev                 # `docker compose down` local dev service
$ make docker_unit_lint
$ make docker_test_integration
```
