mirror of
https://github.com/strapi/strapi.git
synced 2026-01-01 17:54:44 +00:00
46 lines
961 B
JSON
Executable File
46 lines
961 B
JSON
Executable File
{
|
|
"openapi": "3.0.0",
|
|
"info": {
|
|
"version": "1.0.0",
|
|
"title": "DOCUMENTATION",
|
|
"description": "",
|
|
"termsOfService": "YOUR_TERMS_OF_SERVICE_URL",
|
|
"contact": {
|
|
"name": "TEAM",
|
|
"email": "contact-email@something.io",
|
|
"url": "mywebsite.io"
|
|
},
|
|
"license": {
|
|
"name": "Apache 2.0",
|
|
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
|
|
}
|
|
},
|
|
"x-strapi-config": {
|
|
"path": "/documentation",
|
|
"showGeneratedFiles": true
|
|
},
|
|
"servers": [
|
|
{
|
|
"url": "http://localhost:1337",
|
|
"description": "Development server"
|
|
},
|
|
{
|
|
"url": "YOUR_STAGING_SERVER",
|
|
"description": "Staging server"
|
|
},
|
|
{
|
|
"url": "YOUR_PRODUCTION_SERVER",
|
|
"description": "Production server"
|
|
}
|
|
],
|
|
"externalDocs": {
|
|
"description": "Find out more",
|
|
"url": "https://strapi.io/documentation/3.0.0-beta.x/"
|
|
},
|
|
"security": [
|
|
{
|
|
"bearerAuth": []
|
|
}
|
|
]
|
|
}
|