Added instructions for how to enable the dummy payment gateway

This commit is contained in:
Jeremy Quinton 2018-07-09 12:47:29 +02:00
parent 651ff36f28
commit a6ab321561
1 changed files with 7 additions and 0 deletions

View File

@ -119,6 +119,13 @@ docker-compose run php php artisan attendize:install
Attendize should now be available at `http://localhost:8080` and maildev at `http://localhost:1080`
### Enabling Dummy Payment Gateway for testing purposes ###
To be able to test the journey of buying and paying for tickets from the event page you need to have a payment gateway enabled else you can't complete the journey. To enable the dummy gateway that allows you to go through the journey
end to end change the configuration option enable_dummy_payment_gateway in ./config/attendize.php to true
```
'enable_dummy_payment_gateway' => true
```
### Manual Installation
---