Skip to content

Commit

Permalink
Provide Netlify configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkerkhove authored Jun 17, 2020
1 parent bf5b6b9 commit 113f5e0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[Settings]
# Added automatically by the Netlify CLI. It has no effect during normal
# Git-backed deploys.
ID = "2d88d2e7-be5f-4324-ac15-ce1361bfa15f"

# Settings in the [build] context are global and are applied to all contexts
# unless otherwise overridden by more specific contexts.
[build]
# Directory to change to before starting a build.
# This is where we will look for package.json/.nvmrc/etc.
base = "docs/"

# Directory (relative to root of your repo) that contains the deploy-ready
# HTML files and assets generated by the build.
publish = "docs/_site"

# Default build command.
command = "jekyll build"

# Directory with the lambda functions to deploy to AWS.
# functions = "project/functions/"

[build.environment]
RUBY_VERSION = "2.6.2"

# Production context: all deploys from the Production branch set in your site's
# deploy settings will inherit these settings.
# [context.production]
# publish = "output/"
# command = "make publish"
# environment = { ACCESS_TOKEN = "super secret", NODE_ENV = "8.0.1" }

# Deploy Preview context: all deploys resulting from a pull/merge request will
# inherit these settings.
# [context.deploy-preview]
# publish = "dist/"

0 comments on commit 113f5e0

Please sign in to comment.