Skip to content

Commit 46c5ae5

Browse files
committed
Use env variables for prestashop url/token
1 parent 0ad73d8 commit 46c5ae5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
return [
4-
'url' => 'http://domain.com',
5-
'token' => '',
4+
'url' => env('PRESTASHOP_URL', 'http://domain.com'),
5+
'token' => env('PRESTASHOP_TOKEN', ''),
66
'debug' => env('APP_DEBUG', false)
77
];

0 commit comments

Comments
 (0)