Welcome to mirror list, hosted at ThFree Co, Russian Federation.

netlify.toml - github.com/mattstratton/castanet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba902163a014cb94be3d5be516e97d38305e19f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Production context: All deploys to the main
# repository branch will inherit these settings.
[context.production]
#  command = "bin/netlify.sh"
# publish = "exampleSite/public"
   command = "bin/netlify-production.sh"
   publish = "exampleSite/public/"

# Deploy Preview context: All Deploy Previews
# will inherit these settings.
[context.deploy-preview]
  publish = "exampleSite/public/"
  command = "bin/netlify.sh"

  [context.production.environment]
     HUGO_VERSION = "0.91.2"

  [context.deploy-preview.environment]
    HUGO_VERSION = "0.91.2"

  [context.branch-deploy.environment]
    HUGO_VERSION = "0.91.2"