From a539fa51edf0bbff97fe180807be8033e00a820c Mon Sep 17 00:00:00 2001 From: David Calavera Date: Tue, 9 Aug 2016 17:06:10 -0700 Subject: [PATCH] Add netlify.toml file. It makes deploying extremely easy. Signed-off-by: David Calavera --- README.md | 7 ++----- netlify.toml | 3 +++ 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 netlify.toml diff --git a/README.md b/README.md index e43033f..2071e14 100644 --- a/README.md +++ b/README.md @@ -65,11 +65,8 @@ to `/dist/css/{filename}.css`. Import statements will be resolved as part of the ## Deploying to netlify -Push your clone to your own GitHub repo, then start a new Netlify project, pick -your repository and configure it like this: - -* **Build Command:** npm run build -* **Directory:** dist +- Push your clone to your own GitHub repository. +- [Create a new site on Netlify](https://app.netlify.com/start) and link the repository. Now netlify will build and deploy your site whenever you push to git. diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..efcfd06 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,3 @@ +[build] +command = "npm run build" +publish = "dist"