Skip to content

Commit 212f11b

Browse files
committed
feat: zephpyr configs
1 parent 0102a92 commit 212f11b

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

config/nativephp-internal.php

+9
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,13 @@
2929
* The URL to the NativePHP API.
3030
*/
3131
'api_url' => env('NATIVEPHP_API_URL', 'http://localhost:4000/api/'),
32+
33+
/**
34+
* Configuration for the Zephpyr API.
35+
*/
36+
'zephpyr' => [
37+
'host' => env('ZEPHPYR_HOST', 'https://zephpyr.com'),
38+
'token' => env('ZEPHPYR_TOKEN'),
39+
'key' => env('ZEPHPYR_KEY'),
40+
],
3241
];

config/nativephp.php

+8
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
'GITHUB_*',
4949
'DO_SPACES_*',
5050
'*_SECRET',
51+
'ZEPHPYR_*',
5152
'NATIVEPHP_UPDATER_PATH',
5253
'NATIVEPHP_APPLE_ID',
5354
'NATIVEPHP_APPLE_ID_PASS',
@@ -60,6 +61,8 @@
6061
* You may use glob / wildcard patterns here.
6162
*/
6263
'cleanup_exclude_files' => [
64+
'build',
65+
'temp',
6366
'content',
6467
'node_modules',
6568
'*/tests',
@@ -136,4 +139,9 @@
136139
'postbuild' => [
137140
// 'rm -rf public/build',
138141
],
142+
143+
/**
144+
* Custom PHP binary path.
145+
*/
146+
'binary_path' => env('NATIVEPHP_BINARY_PATH', null),
139147
];

0 commit comments

Comments
 (0)