Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

Commit 113f5e0

Browse files
authored
Provide Netlify configuration
1 parent bf5b6b9 commit 113f5e0

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

netlify.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[Settings]
2+
# Added automatically by the Netlify CLI. It has no effect during normal
3+
# Git-backed deploys.
4+
ID = "2d88d2e7-be5f-4324-ac15-ce1361bfa15f"
5+
6+
# Settings in the [build] context are global and are applied to all contexts
7+
# unless otherwise overridden by more specific contexts.
8+
[build]
9+
# Directory to change to before starting a build.
10+
# This is where we will look for package.json/.nvmrc/etc.
11+
base = "docs/"
12+
13+
# Directory (relative to root of your repo) that contains the deploy-ready
14+
# HTML files and assets generated by the build.
15+
publish = "docs/_site"
16+
17+
# Default build command.
18+
command = "jekyll build"
19+
20+
# Directory with the lambda functions to deploy to AWS.
21+
# functions = "project/functions/"
22+
23+
[build.environment]
24+
RUBY_VERSION = "2.6.2"
25+
26+
# Production context: all deploys from the Production branch set in your site's
27+
# deploy settings will inherit these settings.
28+
# [context.production]
29+
# publish = "output/"
30+
# command = "make publish"
31+
# environment = { ACCESS_TOKEN = "super secret", NODE_ENV = "8.0.1" }
32+
33+
# Deploy Preview context: all deploys resulting from a pull/merge request will
34+
# inherit these settings.
35+
# [context.deploy-preview]
36+
# publish = "dist/"

0 commit comments

Comments
 (0)