Skip to content
Snippets Groups Projects

Add 'gdk' command wrapper and gem

Merged Jacob Vosmaer (GitLab) requested to merge gdk-cli into master
1 unresolved thread

Combine make and ./run into gdk. Can be invoked as gdk, e.g. gdk run db.

This does not remove make and ./run, it just adds an integrated wrapper.

Installation become:

gem install gitlab-development-kit
gdk init # clones repo
cd gitlab-development-kit
gdk install gitlab_repo=https://bla

Merge request reports

Checking pipeline status.

Merged by avatar (Mar 5, 2025 8:54am UTC)

Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
bin/gdk 0 → 100755
3
4 # Gitlab Development Kit CLI launcher
5 #
6 # Note to contributors: this script must not change (much) because it is
7 # installed outside the gitlab-development-kit repository with 'gem
8 # install'.
9
10 def main
11 case ARGV.first
12 when 'init'
13 if ARGV.count > 2
14 puts "Usage: gdk init [DIR]"
15 return false
16 end
17
18 cmd = %W(git clone -b gdk-cli https://gitlab.com/gitlab-org/gitlab-development-kit.git)
  • Added 1 commit:

  • Jacob Vosmaer (GitLab) Changed title: Add 'gdk' command wrapperAdd 'gdk' command wrapper and gem

    Changed title: Add 'gdk' command wrapperAdd 'gdk' command wrapper and gem

  • Added 1 commit:

    • bea998ee - Explain what is right, not just what is wrong
  • Jacob Vosmaer (GitLab) Status changed to merged

    Status changed to merged

  • mentioned in commit 3fd2f7d5

  • Please register or sign in to reply
    Loading