1
+ # Settings in the [build] context are global and are applied to all contexts
2
+ # unless otherwise overridden by more specific contexts.
3
+ [build ]
4
+ # Directory to change to before starting a build.
5
+ # This is where we will look for package.json/.nvmrc/etc.
6
+ base = " laravel/"
7
+
8
+ # Directory that contains the deploy-ready HTML files and assets generated by
9
+ # the build. This is relative to the base directory if one has been set, or the
10
+ # root directory if a base has not been set. This sample publishes the
11
+ # directory located at the absolute path "root/project/build-output"
12
+ publish = " public/"
13
+
14
+ # Default build command.
15
+ # command = "echo 'default context'"
16
+
17
+ # Directory with the serverless Lambda functions to deploy to AWS.
18
+ # functions = "functions/"
19
+
20
+ # Production context: all deploys from the Production branch set in your site's
21
+ # deploy contexts will inherit these settings.
22
+ # [context.production]
23
+ # publish = "output/"
24
+ # command = "make publish"
25
+ # environment = { ACCESS_TOKEN = "super secret", NODE_VERSION = "8.0.1" }
26
+
27
+ # Deploy Preview context: all deploys generated from a pull/merge request will
28
+ # inherit these settings.
29
+ # [context.deploy-preview]
30
+ # publish = "public/"
31
+ # command = "build.sh"
32
+
33
+ # Here is another way to define context specific environment variables.
34
+ # [context.deploy-preview.environment]
35
+ # ACCESS_TOKEN = "not so secret"
36
+
37
+ # Branch Deploy context: all deploys that are not from a pull/merge request or
38
+ # from the Production branch will inherit these settings.
39
+ # [context.branch-deploy]
40
+ # publish = "public/"
41
+ # command = "build.sh"
0 commit comments