UNPKG

maestro

Version:

Maestro is a framework for quickly bootstrapping serverless orchestration workflows with AWS Step Functions

14 lines (9 loc) 422 B
const initializeGitRepository = require("./initializeGitRepository"); const createEmptyProject = require("./createEmptyProject"); const createProjectWithoutTemplate = (projectName) => { console.log("Creating project without template..."); createEmptyProject(projectName); initializeGitRepository(projectName); console.log(`Created project "${projectName}"!`); }; module.exports = createProjectWithoutTemplate;