Commit 538489d8 authored by GridexX's avatar GridexX Committed by Thomas Boni
Browse files

chore: remove JEDIS, add CONTRIBUTING



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

CONTRIBUTING.md

0 → 100644
+1 −0
Original line number Diff line number Diff line
We welcome contributions to our project! Please follow these [guidelines](https://docs.r2devops.io/public-catalog/contribute/) when contributing.
 No newline at end of file

JEDIS.md

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
<h1 align="center">Sponsors &amp; Backers</h1>

**R2Devops** is a **collaborative** and **open source** platform, allowing developers to generate in one click a pipeline that automates development supply-chain **painful tasks**.

None of this will be possible without our contributors and sponsors 👇
 No newline at end of file
+0 −33
Original line number Diff line number Diff line
@@ -29,15 +29,6 @@ class Config():
        self.EXIT_SUCCESS = 0
        self.EXIT_FAILURE = 1

        # Mkdocs
        self.MKDOCS_DIR = "docs"
        self.MKDOCS_PLACEHOLDER_FILE = "placeholder.md"
        self.MARKDOWN_EXTENSION = ".md"
        # Path to images used for the built job documentation
        self.MKDOCS_DIR_JOBS_IMAGES = "images/jobs"
        self.ARRANGE_PAGES_FILE_PATH = "docs/jobs/.pages"
        self.TITLE_ARRANGE_PAGES = '🚀 Jobs'

        # Requests variable & API Variables
        self.GITLAB_BASE_URL = "https://gitlab.com/"
        self.GITLAB_API_URL = "https://gitlab.com/api/v4/"
@@ -47,30 +38,6 @@ class Config():
        self.LABEL_COLOR = "fuchsia"
        self.JOB_TOKEN = getenv("API_TOKEN")

        # Templates variables
        self.BUILDER_DIR = "tools/builder"
        self.TEMPLATE_DIR = "templates"
        self.TEMPLATE_INDEX = "index.md.j2"
        self.TEMPLATE_DOC = "job_documentation.md.j2"
        self.TEMPLATE_PLACEHOLDER = "placeholder.md.j2"
        self.TEMPLATE_LICENSE_DIR = "licenses"
        self.INDEX_FILE = "index.md"
        self.TEMPLATE_ARRANGE_PAGES = "arrange_pages.md.j2"


        # List of stages
        self.INDEX = {
            "build": {"order":1, "name":"Build","icon":"🧱","content":[], "description":"Building and packaging of software"},
            "tests": {"order":2, "name":"Tests","icon":"🔎","content":[], "description":"Testing your repository files with dynamic and static tests"},
            "provision": {"order":3, "name":"Provision","icon":"🛠","content":[], "description":"Preparation of the software infrastructure"},
            "review": {"order":4, "name":"Review","icon":"👌","content":[], \
            "description":"Deployment of the software in an isolated review environment"},
            "release": {"order":5, "name":"Release","icon":"🏷","content":[], "description":"Releasing and tagging of the software"},
            "deploy": {"order":6, "name":"Deploy","icon":"🚀","content":[], "description":"Deployment of the software on environments"},
            "others": {"order":7, "name":"Others","icon":"🦄","content":[], "description":"All other magic jobs not included in previous stages"}
        }


        # Check in Constructor
        if not self.LOGFILE_NAME:
            self.LOGFILE_NAME = "default_logfile.log"