Generate data for your content-types
This plugin is for generating data for your content-types.
string
with RegExp pattern, email
, richtext
, integer
, decimal
, date
, media(videos, images, audios, files)
, boolean
enumeration
, password
, UID
, relation
, json
fields of your content types.To install this plugin, you need to add an NPM dependency to your Strapi application:
1
2
3
4
5
# Using Yarn
yarn add strapi-plugin-generate-data
# Or using NPM
npm install strapi-plugin-generate-data
It should be activated by default, but if you don't have it in your admin then enable the plugin manually in config/plugins
1
2
3
4
5
6
{
...,
"generate-data": {
enabled: true,
},
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
...,
{
name: "strapi::security",
config: {
contentSecurityPolicy: {
useDefaults: true,
directives: {
"connect-src": ["'self'", "https:"],
"img-src": ["'self'", "data:", "blob:", `https://loremflickr.com/`],
upgradeInsecureRequests: null,
},
},
},
},
...
npm install strapi-plugin-generate-data
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.