https://github.com/tomasbankauskas/demo-netlify-plugin-form-submissions
https://github.com/tomasbankauskas/demo-netlify-plugin-form-submissions
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tomasbankauskas/demo-netlify-plugin-form-submissions
- Owner: TomasBankauskas
- Created: 2024-02-26T12:21:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-26T12:22:05.000Z (over 1 year ago)
- Last Synced: 2025-02-10T04:26:46.879Z (4 months ago)
- Language: Nunjucks
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Example site: netlify-plugin-form-submissions
This site only exists to demonstrate a Netlify Build Plugin.
- Learn more about the [netlify-plugin-form-submissions](https://github.com/philhawksworth/netlify-plugin-form-submissions) plugin.
- See this example site here: https://demo-netlify-plugin-form-submissions.netlify.app## Quick try-out
You can try out this site and its plugin out by deploying it.
Clicking the button below will clone this repo, setup a new site [on Netlify](https://netlify.com?utm_source=github&&utm_medium=plugin-formsubmissions-pnh&utm_campaign=devex) and deploy the site complete with the plugin configured and operational.
[](https://app.netlify.com/start/deploy?repository=https://github.com/philhawksworth/demo-netlify-plugin-form-submissions&utm_source=github&utm_medium=plugin-formsubmissions-pnh&utm_campaign=devex)
## Configuration
```toml
...# Config for the Netlify Build Plugin: netlify-plugin-form-submissions
[[plugins]]
package = "netlify-plugin-form-submissions"[plugins.inputs]
# Get submissions for specific forms
# e.g. "form-name"
# e.g. ["form-name-1", "form-name-2"]
# e.g. "ALL"
# default: "ALL"
formNames = "ALL"# the folder to recieve json files for each form
dataDirectory = "src/_data"```