.. _development: Installation and Guide for Developers ================================================================================= This section describes how to install *ETA Ctrl* using *poetry*, and how to contribute to development. Contributing to development ----------------------------- If you would like to contribute, please create an issue in the repository to discuss your suggestions. Once the general idea has been agreed upon, you can create a merge request from the issue and implement your changes there. If you are planning to develop on this package, based on the requirements of another package, you might want to import directly from a local git repository. To do this, uninstall ETA Ctrl from the other projects virtual environment and add the path to the local *ETA Ctrl* repository to the other projects main file: .. code-block:: sys.path.append("") .. _install_poetry: Installing Poetry -------------------- This project is being managed by `Poetry `_. It's a tool for Python dependency management and packaging. In order to install the development environment, you need to install Poetry first. Open a terminal for the next steps (such as PowerShell) .. note:: Depending on where the relevant folders for the installation are located on your OS, the terminal may need to be executed as administrator / root. It's recommended to install Poetry with pipx. This will install Poetry in an isolated environment. If you don't have pipx installed, you can install it with pip: .. code-block:: console $ python -m pip install pipx $ python -m pipx ensurepath Then install Poetry with pipx: .. code-block:: console $ pipx install poetry==2.3.2 .. note:: Poetry will initially use the Python version that it has been installed with. To change the Python version, see :ref:`managinv_environments_poetry`. By default, Poetry will create its own virtual environment for each project. Only if there is already a virtual environment called ".venv" in the project folder, Poetry will use it. The virtual environments will be installed in: .. code-block:: none C:\Users\\AppData\Local\pypoetry\Cache\virtualenvs\ For more information, see the `Poetry documentation `_. Installation of ETA Ctrl ------------------------------------- First, clone the repository to a directory of your choosing. You can use a git GUI for this or execute the following command. See also :ref:`install_git`. .. code-block:: console $ git clone https://git.ptw.maschinenbau.tu-darmstadt.de/eta-fabrik/public/eta-ctrl You might be asked for your git login credentials. .. figure:: figures/10_GitLogin.png :width: 300 :alt: git login Git login window. After this, navigate to the root directory **eta-ctrl** .. code-block:: console $ cd eta-ctrl \.. and install the project via poetry with the extra *develop* . This includes all requirements plus everything required for development and continuous integration checks: .. code-block:: console $ poetry install .. note:: Updating the project dependencies is done with the same command. We use pre-commit to check code before committing. Therefore, after the installation completes, please install pre-commit before performing the first commits to the repository. This ensures that your commits will be checked and formatted automatically. .. code-block:: console $ poetry run pre-commit install .. figure:: figures/11_PreCommit.png :width: 600 :alt: pre-commit installed successfully Confirmation of correct pre-commit installation. .. note:: When using pre-commit for the first time, it will take longer as it will install all the hooks. | When using an IDE or code editor, make sure that it uses the virtual environment managed by Poetry. | For PyCharm, see: https://www.jetbrains.com/help/pycharm/poetry.html#poetry-env | For VS Code, see: https://code.visualstudio.com/docs/python/environments .. _managinv_environments_poetry: Managing Environments with Poetry ----------------------------------- You can run commands in the virtual environment by using the following command: .. code-block:: console $ poetry run To check which Python version Poetry is using and get the path of that environment, execute the following command: .. code-block:: console $ poetry env info You can change the Python version Poetry uses with: .. code-block:: console $ poetry env use To list all available Python versions on Windows, run: .. code-block:: console $ py -0p For more information, see the `Poetry docs `_. .. _testing_your_code: Testing your code ------------------------------- Please always execute the tests before committing changes. You can do this by navigating to the main folder of the *ETA Ctrl* repository and executing the following command in a terminal. .. code-block:: console $ poetry run pytest Or if you have the virtual environment already activated: .. code-block:: console $ pytest Editing this documentation ----------------------------- Sphinx is used as a documentation-generator. The relevant files are located in the *docs* folder of the repository. If you correctly installed *ETA Ctrl* with the develop extension, sphinx should already be installed. You can edit the *.rst-files* in the *docs* folder. A simple text editor is sufficient for this. A helpful start for learning the syntax can be found `here `_. For test purposes, navigate to the *docs* folder and execute the following command: .. code-block:: console $ poetry run make html This creates a folder named *_build* (inside the *docs* folder) which allows the HTML pages to be previewed locally. This folder will not be committed to git. Re-execute this command each time you edit the documentation to see the changes (you may have to refresh the HTML page). .. tip:: Instead of manually refreshing, you can use the `Live Server `_ extension for VS Code (``ritwickdey.liveserver``). Open ``docs/_build/html/index.html`` and click **Go Live** in the status bar. The browser tab will reload automatically each time you rebuild the documentation. If you have problems using sphinx see :ref:`sphinx_not_found`. GitLab - CI/CD -------------------------------------- Your contribution via pull request can only be merged if the steps from the CI/CD are approved. The stages are: - *check*: verify the check-style - *test*: check all tests - *deploy*: verify correct documentation deploy All the CI/CD instructions are listed in the *.gitlab-ci.yml* file. GitLab - Docker containers ----------------------------- The directory *.gitlab* contains the dockerfiles which define the images that the jobs of the CI/CD run on. All the dockerfiles contains an correspondent image stored in **Packages & Registries > Container Registry**. In which the image will be used in a container to execute the jobs. Use the script '.gitlab/docker/build_and_push_docker' to build and push all required images. This requires a gitlab deploy token `DEPLOY_TOKEN` in the project .env file. The images can also be build manually, but it's recommended to use the script. Manual building ~~~~~~~~~~~~~~~~~ To update the containers first you need to login in GitLab through docker: .. code-block:: console $ docker login git-reg.ptw.maschinenbau.tu-darmstadt.de Then you build and upload the image from the dockerfile. To build an image for e.g. Python version 3.12, execute: .. code-block:: console $ docker build -t git-reg.ptw.maschinenbau.tu-darmstadt.de/eta-fabrik/public/eta-ctrl/poetry2.3.2:py3.12 -f .gitlab/docker/dockerfile --build-args="PYTHON_VERSION=3.12" . Using tags for the images is a good practice to differentiate image versions, in case it's not used it's automatic labeled as *latest*. Currently there are two images for Python environments, grouped by the current Poetry version, with Python versions differentiated by tags (py3.11 and py3.12). The last step is to upload the images to the private docker registry. .. code-block:: console $ docker push git-reg.ptw.maschinenbau.tu-darmstadt.de/eta-fabrik/public/eta-ctrl/poetry2.3.2:py3.12