void createProjectSpecificFiles(String directoryPath)

Source

void createProjectSpecificFiles(String directoryPath) {
  displayProgress("Generating config.yaml from config.src.yaml.");
  var configSrcPath =
      new File(path_lib.join(directoryPath, "config.src.yaml"));
  configSrcPath
      .copySync(new File(path_lib.join(directoryPath, "config.yaml")).path);
}