File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 29
29
* The URL to the NativePHP API.
30
30
*/
31
31
'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
+ ],
32
41
];
Original file line number Diff line number Diff line change 48
48
'GITHUB_* ' ,
49
49
'DO_SPACES_* ' ,
50
50
'*_SECRET ' ,
51
+ 'ZEPHPYR_* ' ,
51
52
'NATIVEPHP_UPDATER_PATH ' ,
52
53
'NATIVEPHP_APPLE_ID ' ,
53
54
'NATIVEPHP_APPLE_ID_PASS ' ,
60
61
* You may use glob / wildcard patterns here.
61
62
*/
62
63
'cleanup_exclude_files ' => [
64
+ 'build ' ,
65
+ 'temp ' ,
63
66
'content ' ,
64
67
'node_modules ' ,
65
68
'*/tests ' ,
136
139
'postbuild ' => [
137
140
// 'rm -rf public/build',
138
141
],
142
+
143
+ /**
144
+ * Custom PHP binary path.
145
+ */
146
+ 'binary_path ' => env ('NATIVEPHP_BINARY_PATH ' , null ),
139
147
];
You can’t perform that action at this time.
0 commit comments