# ABI Webhook Application

## Install the Application

Run this command from the directory in which you want to install your new Slim Framework application. You will require PHP 7.3 or newer.

```bash
composer install
```

- Point your virtual host document root to your new application's `public/` directory.
- Ensure `logs/` is web writable.

Don't forget to write a new `.env` file.

To run the application in development, you can run these commands

```bash
composer start
```

Or you can use `docker-compose` to run the app with `docker`, so you can run these commands:

```bash
docker-compose up -d
```

After that, open `http://localhost:3000/webhook/page` in your browser.
