-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexport.php
More file actions
82 lines (72 loc) · 2.09 KB
/
export.php
File metadata and controls
82 lines (72 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
return [
/*
* If true, the exporter will crawl through your site's pages to determine
* the paths that need to be exported.
*/
'crawl' => true,
/*
* Add additional paths to be added to the export here. If you're using the
* `crawl` option, you probably don't need to add anything here.
*
* For example: "about", "posts/featured"
*/
'paths' => [
'questions-responses',
'aewallet-dispatcher',
'privacy-policy-archethic',
'privacy-policy-wallet',
'privacy',
'terms-of-service',
'terms-of-use-defi',
'terms',
'job-offer/blockchain-developer'
],
/*
* Files and folders that should be included in the build. Expects
* key/value pairs with current paths as keys, and destination paths
* as values.
*
* By default your `public` folder's contents will be added to the export.
*/
'include_files' => [
'public' => '',
],
/*
* File patterns that should be excluded from the included files.
*/
'exclude_file_patterns' => [
'/\.php$/',
'/mix-manifest\.json$/',
],
/*
* Whether or not the destination folder should be emptied before starting
* the export.
*/
'clean_before_export' => true,
/*
* If set, the site will be exported to this disk. Disks can be configured
* in `config/filesystems.php`.
*
* If empty, your site will be exported to a `dist` folder.
*/
'disk' => null,
/*
* Shell commands that should be run before the export starts when running
* `php artisan export`.
*
* You can skip these by adding a `--skip-{name}` flag to the command.
*/
'before' => [
// 'assets' => '/usr/local/bin/yarn production',
],
/*
* Shell commands that should be run after the export has finished when
* running `php artisan export`.
*
* You can skip these by adding a `--skip-{name}` flag to the command.
*/
'after' => [
// 'deploy' => '/usr/local/bin/netlify deploy --prod',
],
];