Skip to content

Instantly share code, notes, and snippets.

@DrPsychick
DrPsychick / gitlab-local.md
Last active September 1, 2024 10:03
Run gitlab-ci jobs locally

Run/Test GitLab CI Pipeline jobs locally

  • cd into your project directory

Hints

@tigerhawkvok
tigerhawkvok / poetry-convert.py
Last active December 11, 2024 16:22
Convert a requirements.txt file to a Poetry project
#!python3
"""
Convert a requirements.txt file to a Poetry project.
Just place in the root of your working directory and run!
"""
sourceFile = "./requirements.txt"
import re
import os