All checks were successful
Build and publish / build (pull_request) Successful in 4m38s
Replace all hardcoded muellerprints brand identity in email templates with template variables (shopName, shopContactName, shopAddress, shopPhone, shopEmail, shopLogoUrl, shopSecondaryLogoUrl) sourced from env vars SHOP_NAME, SHOP_CONTACT_NAME, SHOP_ADDRESS, SHOP_PHONE, SHOP_EMAIL, SHOP_LOGO_URL, SHOP_SECONDARY_LOGO_URL. API documentation title/description now driven by API_TITLE and API_DESCRIPTION env vars. Closes #1
31 lines
497 B
JSON
31 lines
497 B
JSON
{
|
|
"openapi": "3.0.1",
|
|
"info": {
|
|
"version": "1.0.0",
|
|
"title": "Paperwork API",
|
|
"description": "Paperwork API",
|
|
"termsOfService": false,
|
|
"contact": false,
|
|
"license": false
|
|
},
|
|
"x-strapi-config": {
|
|
"plugins": [],
|
|
"path": "/documentation"
|
|
},
|
|
"servers": [
|
|
{
|
|
"url": "https://localhost:8443/api",
|
|
"description": "Docker Development"
|
|
},
|
|
{
|
|
"url": "http://localhost:5555/api",
|
|
"description": "Local Development"
|
|
}
|
|
],
|
|
"security": [
|
|
{
|
|
"bearerAuth": []
|
|
}
|
|
]
|
|
}
|