Commit 2d863911 authored by GridexX's avatar GridexX Committed by Thomas Boni
Browse files

chore: remove cookie_cutter



Signed-off-by: default avatarGridexX <arsene582@gmail.com>
parent 9c29090b
Loading
Loading
Loading
Loading

cookiecutter.config.js

deleted100644 → 0
+0 −39
Original line number Diff line number Diff line
module.exports = [
  {
    name: "Job folder creation",
    templatePath: "tools/job_template/r2_jobname/",
    outputPath: "jobs/",
    fields: [
      {
        templateVariable: "r2_jobname",
        question: "What is the name of your job?"
      },
      {
        templateVariable: "r2_jobdescription",
        question: "Give a short description of your job"
      },
      {
        templateVariable: "r2_stage",
        question: "What is the default stage of your job?",
        choices: ["build", "tests", "provision", "review", "release", "deploy", "others"]
      },
      {
        templateVariable: "r2_maintainer",
        question: "What is your Gitlab username?"
      },
      {
        templateVariable: "r2_license",
        question: "What license do you want to use?",
        choices: ["MIT", "Apache-2.0"]
      },
      {
        templateVariable: "r2_imagename",
        question: "What is the Docker image that you will use? (just the name, Without version)"
      },
      {
        templateVariable: "r2_imagetag",
        question: "What is the tag of this image?",
      }
    ]
  }
];