14
14
15
15
TOP_DIR=$( git rev-parse --show-toplevel)
16
16
17
+ PNPM_VERSION=" 10.2.0"
18
+ NODE_VERSION=" 23"
19
+ NVM_VERSION=" 0.40.1"
20
+
17
21
AUDIENCE=" eng"
18
22
while getopts " :a:" opt; do
19
23
case ${opt} in
@@ -91,12 +95,21 @@ function genkit::install_prerequisites() {
91
95
python3 \
92
96
ripgrep
93
97
elif [[ -x " $( command -v apt) " ]]; then
98
+ # Check if the OS is Ubuntu 22.04 (or a derivative) since some of our eng
99
+ # use it.
100
+ if lsb_release -a | grep -q " Description:.*Ubuntu 22.04" ; then
101
+ sudo add-apt-repository -y ppa:longsleep/golang-backports
102
+ sudo apt update
103
+ sudo apt install -y golang-go
104
+ else
105
+ sudo apt install -y golang
106
+ fi
107
+
94
108
# Debian-based systems.
95
109
sudo apt install -y \
96
110
curl \
97
111
fd-find \
98
112
gh \
99
- golang \
100
113
nodejs \
101
114
python3 \
102
115
ripgrep
@@ -114,22 +127,45 @@ function genkit::install_prerequisites() {
114
127
echo " Unsupported OS. Please install protoc manually."
115
128
fi
116
129
130
+ genkit::install_rust
131
+ genkit::install_uv
132
+ genkit::install_and_configure_nvm
133
+ genkit::install_pnpm
134
+ }
135
+
136
+ function genkit::install_rust() {
117
137
# Install rust.
118
138
curl --proto ' =https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
119
139
rustup update
140
+ }
120
141
121
- # Install uv for Python versioning, packaging, and workspace management.
142
+ # Install uv for Python versioning, packaging, and workspace management.
143
+ function genkit::install_uv() {
122
144
curl -LsSf https://astral.sh/uv/install.sh | sh
145
+ }
123
146
124
- # Install pnpm for JavaScript package management.
125
- # See: https://github.com/pnpm/pnpm/issues/6217
147
+ # Install pnpm for JavaScript package management.
148
+ # See: https://github.com/pnpm/pnpm/issues/6217
149
+ function genkit::install_pnpm() {
126
150
curl -fsSL https://get.pnpm.io/install.sh |
127
151
env ENV=" $HOME /.bashrc" \
128
152
SHELL=" $( which bash) " \
129
- PNPM_VERSION=10.0.0 \
153
+ PNPM_VERSION=" ${PNPM_VERSION} " \
130
154
bash -
131
155
}
132
156
157
+ # Install node version manager.
158
+ function genkit::install_and_configure_nvm() {
159
+ export NVM_DIR=" $HOME /.config/nvm"
160
+ mkdir -p " $NVM_DIR "
161
+ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v${NVM_VERSION} /install.sh | bash
162
+ [ -s " $NVM_DIR /nvm.sh" ] && source " $NVM_DIR /nvm.sh" # This loads nvm
163
+ [ -s " $NVM_DIR /bash_completion" ] && source " $NVM_DIR /bash_completion" # This loads nvm bash_completion
164
+ nvm install " ${NODE_VERSION} "
165
+ nvm use " ${NODE_VERSION} "
166
+ nvm alias default " ${NODE_VERSION} "
167
+ }
168
+
133
169
# Install the Google Cloud SDK.
134
170
function genkit::install_google_cloud_sdk() {
135
171
# This depends on Python 3.11 and installs it for the user on some systems.
@@ -176,7 +212,6 @@ function genkit::install_pnpm_cli_tools() {
176
212
# Biome: https://biomejs.dev/
177
213
pnpm add -g \
178
214
@biomejs/biome \
179
- genkit-cli \
180
215
prettier
181
216
}
182
217
@@ -220,6 +255,7 @@ function genkit::setup_genkit() {
220
255
221
256
# Install all the common packages.
222
257
function genkit::install_common_packages() {
258
+ export PNPM_HOME=" $HOME /.local/share/pnpm"
223
259
genkit::install_prerequisites
224
260
genkit::install_python_cli_tools
225
261
genkit::install_docs_cli_tools
@@ -228,7 +264,6 @@ function genkit::install_common_packages() {
228
264
229
265
# Install all the required tools for CI.
230
266
function genkit::install_ci_packages() {
231
- export PNPM_HOME=" $HOME /.local/share/pnpm"
232
267
genkit::install_common_packages
233
268
genkit::install_go_cli_tools_ci
234
269
}
@@ -261,5 +296,4 @@ function genkit::main() {
261
296
echo " Please restart your shell."
262
297
}
263
298
264
- # Let's go!
265
299
genkit::main
0 commit comments