-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.sh
39 lines (28 loc) · 1.03 KB
/
init.sh
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
dotnet tool restore
curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 3.1.100
pip install -r requirements.txt
curl https://get.volta.sh | bash
export VOLTA_HOME="$HOME/.volta"
echo "export VOLTA_HOME=\"\$HOME/.volta\"" >> ~/.bashrc
export PATH="$VOLTA_HOME/bin:$PATH"
echo "export PATH=\"\$VOLTA_HOME/bin:\$PATH\"" >> ~/.bashrc
volta install node@18
sudo rm -rf /usr/local/share/nvm
curl https://bun.sh/install | bash
export BUN_INSTALL="$HOME/.bun"
echo "export BUN_INSTALL=\"\$HOME/.bun\"" >> ~/.bashrc
export PATH="$BUN_INSTALL/bin:$PATH"
echo "export PATH=\"\$BUN_INSTALL/bin:\$PATH\"" >> ~/.bashrc
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"
echo "export PATH=\"\$HOME/.cargo/bin:\$PATH\"" >> ~/.bashrc
rustup toolchain install nightly
pwsh init.ps1
cargo install rod
cargo install cargo-outdated
cargo install http-server
dotnet paket install
bun install
cd peer_gunjs && bun install && cd ..
cd web && bun install && cd ..
cd web && bun run playwright-install && cd ..