-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from takeshape/readme-tests
Add README, tests, and timezone input
- Loading branch information
Showing
7 changed files
with
1,838 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,45 @@ | ||
# netlify-plugin-takeshape | ||
# TakeShape Netlify build plugin | ||
|
||
Automatically create and configure a [TakeShape](https://www.takeshape.io/) project for use with your Netlify site. | ||
|
||
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/takeshape/netlify-plugin-takeshape) | ||
|
||
The plugin will | ||
- create a TakeShape project for your Netlify site, if it does not exist already | ||
- (optional) import a [pattern](https://app.takeshape.io/docs/import-export/patterns) when creating the project | ||
- create read-only and read-write API keys for the project and add them to the build environment | ||
- in subsequent builds, deploy any changes to your pattern's `schema.json` file, if present | ||
|
||
## Installation | ||
|
||
### File-based configuration | ||
|
||
Add the following to your `netlify.toml` file: | ||
```toml | ||
[[plugins]] | ||
package = "@takeshape/netlify-plugin-takeshape" | ||
|
||
# Optional: specify the timzeone for your TakeShape project (defaults to "America/New_York") | ||
[plugins.inputs] | ||
timezone = "America/Los_Angeles" | ||
``` | ||
|
||
Then, add the package as a dev dependency: | ||
``` | ||
npm install -D @takeshape/netlify-plugin-takeshape | ||
``` | ||
|
||
### Environment variables | ||
|
||
1. Create a new [personal access token](https://app.takeshape.io/personal-access-tokens). | ||
2. In the Netlify UI, go to **Site settings > Build & deploy > Environment > Environment variables** and set the personal access token as the value of the `TAKESHAPE_ACCESS_TOKEN` environment variable. | ||
|
||
Refer to the [Netlify docs](https://docs.netlify.com/configure-builds/environment-variables/) for further information about configuring environment variables. | ||
|
||
## Before building | ||
|
||
If you wish to create your TakeShape project from a [pattern](https://app.takeshape.io/docs/import-export/patterns), add the `schema.json` and any other pattern files to a `.takeshape/pattern` directory in the repository for your Netlify site. The build plugin will import the pattern when creating your project and, in subsequent builds, will deploy any changes to your `.takeshape/pattern/schema.json` file. | ||
|
||
## Authenticating your Netlify site with TakeShape | ||
|
||
The plugin will automatically create API keys for your TakeShape project and add them to the Netlify build as the `TAKESHAPE_READ_ONLY_API_KEY` and `TAKESHAPE_READ_WRITE_KEY` environment variables. Refer to the [Netlify docs](https://docs.netlify.com/configure-builds/environment-variables/#access-variables) for instructions for accessing environment variables either during or after the build. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
name: netlify-plugin-takeshape | ||
name: netlify-plugin-takeshape | ||
inputs: | ||
- name: timezone | ||
required: false | ||
description: The tz database name of the timezone to set as the default for your TakeShape project | ||
default: "America/New_York" |
Oops, something went wrong.