node-api-document
Version:
🚀 Generate beautiful, interactive API documentation for Node.js/Express applications with zero configuration. Features include password protection, custom branding, responsive design, and easy integration. Perfect for REST APIs, microservices, and web ap
16 lines (11 loc) • 942 B
JavaScript
module.exports = {
'APP_NAME': process.env.APP_NAME || 'API Documentation',
'API_BASE_URL': process.env.BASE_URL || '',
'API_DOC_BASE_URL_PATH': '/api-doc/',
//////////////////////////////////////////////////////////////////////
// Image URL Path //
//////////////////////////////////////////////////////////////////////
'ARROW_IMAGE': `${process.env.ARROW_IMAGE}` || `https://drive.google.com/file/d/1YmKf2sN9MBBr-8Ljf8116adLZ236zM-R/view` || `https://drive.usercontent.google.com/download?id=1YmKf2sN9MBBr-8Ljf8116adLZ236zM-R&authuser=0` || '',
'LOGO_URL': `${process.env.LOGO_URL}` || 'https://picsum.photos/200/200',
'LOADER_IMAGE': `${process.env.LOADER_IMAGE}` || `https://drive.google.com/file/d/13Ir5WOCBRxNsqg0_qRjZklXFtf95I2cN/view` || `https://drive.usercontent.google.com/download?id=13Ir5WOCBRxNsqg0_qRjZklXFtf95I2cN&authuser=0` || '',
};