Preliminary Steps Obtain Docker by visiting this page: Docker Installation Read our article on Gitlab Establishing Connection between Docker and GitLab Repository Obtain a deploy token for this machine from the GitLab repository (restricted to maintainers). More details can be found here: GitLab Deploy Tokens Set up the deploy key as an environmental variable by …
Month
Showing: 3 RESULTS
August 2023
🖥️ Handling External Dependencies Update
I. Overview Navigating large-scale projects invariably involves managing external dependencies. The onus falls on the developer and project overseer to continuously seek updates and decide their applicability. This guide provides insights into the aspects of updating external packages. II. Advantages of Updating Unlocks the potential to incorporate new features into your existing project. Addresses issues …
🖥️ Find a text in Vim and Vi
This is how to search a text in Vim and Vi : Go to your file folder and open your file $> cd path/to/your/file $> vi yourFile.extension Press ESC key Type / folloed with your text to find. Example /haizly Press Enter Hit n to search for the next occurence and N to search backwards