realtime graph from https://star-history.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* version: 03-14-2022 */ | |
| .swagger-ui .info .title, .swagger-ui a.nostyle, .swagger-ui .parameter__name, .swagger-ui .parameter__type, .swagger-ui .parameter__deprecated, .swagger-ui .parameter__in, .swagger-ui table thead tr th, .swagger-ui .response-col_status, .swagger-ui table thead tr td, .swagger-ui .opblock .opblock-section-header h4, .swagger-ui label, .swagger-ui .tab li, .swagger-ui .opblock .opblock-section-header label, .swagger-ui .btn { | |
| color: #CCCCCC; | |
| } | |
| body, .swagger-ui .info .title, .swagger-ui .scheme-container, .swagger-ui select { | |
| background-color: #222; | |
| color: #CCC; | |
| } | |
| .swagger-ui .opblock .opblock-section-header { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S npx zx | |
| $.shell = '/usr/bin/bash' | |
| $.verbose = process.env.NODE_ENV === 'development' | |
| // ========================================================================== // | |
| function quitWitError(errorMsg) { | |
| console.error( chalk.bold.red(errorMsg) ) | |
| process.exit(1) | |
| } | |
| function assertNotEmpty(val, errorMsg) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## ===========================================================> The common stage | |
| FROM node:16.14 AS base | |
| ENV NODE_ENV=production | |
| WORKDIR /app | |
| COPY package*.json ./ | |
| RUN npm ci --only=production | |
| ## Remove unnecessary files from `node_modules` directory |
OlderNewer