Skip to content

Commit

Permalink
Update DEV_INSTALL.md (#7817)
Browse files Browse the repository at this point in the history
* Update DEV_INSTALL.md

* Update DEV_INSTALL.md

* Update DEV_INSTALL.md

---------

Co-authored-by: Florian M <[email protected]>
  • Loading branch information
Tobias314 and fm3 authored May 22, 2024
1 parent e443ee5 commit 2b7d456
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion DEV_INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,24 @@ sudo apt install -y curl ca-certificates wget
# Install nvm, node 18
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
source ~/.bashrc
nvm install 18
nvm use 18

# Adding repositories for yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt update
sudo apt install -y git postgresql postgresql-client unzip zip yarn redis-server build-essential libblosc1 libbrotli1 libdraco-dev
sudo apt install -y git postgresql postgresql-client unzip zip yarn redis-server build-essential libblosc1 libbrotli1 libdraco-dev cmake

# Install sdkman, java, scala and sbt
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install scala 2.13.12
sdk install sbt
sdk install java 21.0.2-tem
# Source sdkman-init.sh again to load environment variables like JAVA_HOME
source "$HOME/.sdkman/bin/sdkman-init.sh"

# Assign a password to PostgreSQL user
sudo -u postgres psql -c "ALTER USER postgres WITH ENCRYPTED PASSWORD 'postgres';"
Expand Down

0 comments on commit 2b7d456

Please sign in to comment.