-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHELP
More file actions
62 lines (48 loc) · 3.29 KB
/
HELP
File metadata and controls
62 lines (48 loc) · 3.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# GitLab Development Kit
Usage: gdk <command> [<args>]
Manage services:
gdk start # Start everything
gdk start redis postgresql # Start specific services
gdk stop # Stop all services and unload Runit
gdk stop redis postgresql # Stop specific service
gdk status # See status of all services
gdk restart # Restart everything
gdk restart redis postgresql # Restart specific services
gdk kill # Forcibly kills services
gdk tail # Tail all logs
gdk tail redis postgresql # Tail specific logs
gdk thin # Run Rails web server with thin in
# foreground
gdk psql [-d gitlabhq_development] # Run Postgres console
gdk psql-geo # Run Postgres console connected to the Geo tracking database
gdk rails <command> [<args>] # Execute provided command on Rails bundled with GitLab
gdk redis-cli # Run Redis console
gdk clickhouse # Run ClickHouse console
gdk measure # Generate a sitespeed.io report for given URL(s)
gdk measure-workflow # Generate a sitespeed.io report for given workflow(s)
Manage GDK:
gdk open # Visit your GitLab installation in your default web browser
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 config get postgresql.port # Get configuration values
gdk config set postgresql.port <port> # Set configuration values
gdk diff-config # Print difference between current
# and new configuration values
gdk reset-data # Backs up and creates fresh git
# repository, PostgreSQL data and
# Rails upload directory
gdk reset-praefect-data # Backs up and creates fresh Praefect
# PostgreSQL data
gdk cleanup # Truncate log files and remove any
# unnecessarily installed dependencies
gdk pristine # Restore your GDK to a pristine
# state. Deletes caches, temporary files, and
# reinstalls dependencies. Does not delete data
gdk doctor # Run diagnostics on GDK
gdk version # Print current GDK version
gdk help # Print this help text
# Development admin account: root / 5iveL!fe
For more information about GitLab development see
https://docs.gitlab.com/ee/development/README.html.