Welcome to mirror list, hosted at ThFree Co, Russian Federation.

HELP - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/HELP
blob: 519cd00761dd0cba5f7c01c1b8ff106369065e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# GitLab Development Kit cheat sheet

gdk run            # Start everything
gdk run db         # Start enough to run tests
gdk run geo_db     # Start Geo tracking database
gdk run gitaly     # Start gitaly (git backend service)
gdk run jobs       # Start GitLab background jobs
gdk run grafana    # Start Grafana in a separate port

# Application Server (needs `gdk run db`):
gdk run app        # Start GitLab rails and frontend servers
gdk run thin       # Run only rails with thin

gdk install gitlab_repo=https://my-fork   # Install everything
gdk update                                # Pull application changes from Git
gdk reconfigure                           # Delete and regenerate all config files created by GDK
gdk psql -d gitlabhq_development          # Postgres console
gdk redis-cli                             # Redis console

# Development admin account: root / 5iveL!fe

For more information about GitLab development see
https://docs.gitlab.com/ce/development/README.html.