File tree Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Expand file tree Collapse file tree 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 8
8
- Git
9
9
- (Optional) MariaDB/MySQL client-only CLI (no server)
10
10
11
- > ** Optional MySQL via CLI:** only if you want a local server outside Docker.
12
- > macOS (Homebrew):
13
- '''bash
14
- brew install mysql
15
- echo 'export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"' >> ~ /.zshrc && source ~ /.zshrc
16
- '''
17
- > Ubuntu/Debian: ` sudo apt-get update && sudo apt-get install -y mysql-server `
18
- > (Do NOT install or start a local server. We’ll run the DB in Docker.)
11
+ ** Install client only (no server):**
12
+ - ** macOS (Homebrew):**
13
+ ``` bash
14
+ brew install mysql-client
15
+ echo ' export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"' >> ~ /.zshrc && source ~ /.zshrc
16
+ ```
17
+ - ** Ubuntu/Debian:**
18
+ ``` bash
19
+ sudo apt-get update && sudo apt-get install -y mariadb-client
20
+ ```
21
+ * (Do NOT install or start a local server. We’ll run the DB in Docker.)*
19
22
20
23
---
21
24
You can’t perform that action at this time.
0 commit comments