MontealegreLuis/php-testing-tools

View on GitHub
ui/web/README.md

Summary

Maintainability
Test Coverage
# eWallet Web Application

The following commands are meant to be run from the `dev` container in this directory.

```bash
$ cd ui/web
```

## Setup

```bash
make bootstrap
```

## Configuration

In order to run the application you will need an `.env` file with your database credentials.
**If you're using the Docker containers, skip this step**

```bash
make setup
```

## Run application

**If you're using the Docker containers, skip this step**

```bash
make serve
```

## Tests

End-to-end tests use PhantomJS, please install it globally, so you can run the test suite.
If you're using the Docker containers, there's no need to worry about it.

```bash
make tests
```