-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
30 lines (22 loc) · 709 Bytes
/
setup.sh
File metadata and controls
30 lines (22 loc) · 709 Bytes
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
# Alpine Linux
apk update
apk upgrade
apk add --no-cache --update bash curl
# Rust and Cargo
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup install nightly
rustup component add rustfmt
rustup component add rustfmt --toolchain nightly
rustup component add clippy
rustup component add clippy --toolchain nightly
cargo install cargo-expand
# TODO: NVM (Node & NPM) support for Alpine is pending (https://github.com/nvm-sh/nvm/issues/1102)
# Bun
curl https://bun.sh/install | bash
bun upgrade --canary
# Bun global packages
bun install husky @moonrepo/cli -g
# DevOps
apk add --no-cache --update terraform docker openrc kubernetes k9s
# Setup configurations
cp -R .config ~/.config