UNPKG

@practica/create-node-app

Version:

Create Node.js app that is packed with best practices AND strive for simplicity

10 lines (8 loc) 217 B
import isCI from 'is-ci'; import dockerCompose from 'docker-compose'; export default async () => { if (isCI) { // ️️️✅ Best Practice: Leave the DB up in dev environment dockerCompose.down(); } };