Skip to content

Commit

Permalink
Implement Netlify configuration
Browse files Browse the repository at this point in the history
This commit implements a part of the implementation of the "hosting &
continuous deployment concept" (1) with Netlify's configuration
file (2). It initially defines the `command` and `publish` keys of the
`[build]` section for production builds.

See the "Hosting" and "Continuous Deployment" (sub)sections of the
related epic issue for more details about the architecture.

References:
  (1) #46
  (2) https://www.netlify.com/docs/netlify-toml-reference

Related epics: GH-46
Resolves GH-48
  • Loading branch information
arcticicestudio committed Nov 27, 2018
1 parent 43204f0 commit f03dc82
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (C) 2018-present Arctic Ice Studio <[email protected]>
# Copyright (C) 2018-present Sven Greb <[email protected]>
#
# Project: Nord Docs
# Repository: https://github.com/arcticicestudio/nord-docs
# License: MIT

# Configuration for Netlify.
#
# @see https://www.netlify.com/docs/netlify-toml-reference

[build]
command = "npm run build"
publish = "public/"

0 comments on commit f03dc82

Please sign in to comment.