Onboarding Process for Team Cylon Developers
- Your editor of choice (typically Visual Studio Code or Intellij IDEA Community Edition)
- Git version control CLI: Git
- Java - Version 11*
- NodeJS - Version 16*
* Save the installation path for each program
- Create a new system variable named:
JAVA_HOME
- Set it's value to your installed Java path e.g.
C:\ProgramFiles\AdoptOpenJDK\jdk-xxx
- Set it's value to your installed Java path e.g.
- Edit your existing
PATH
system variable, and add:- Your node installed path e.g.
C:\ProgramFiles\nodejs
- Your "JAVA_HOME" environment variable
%JAVA_HOME%\bin
- Your node installed path e.g.
- Click "Ok"
- Within a terminal find the path to your
.bash_profile
by using~/.bash-profile
and open it withopen ~/.bash_profile
- If not found execute:
touch ~/.bash_profile
open ~/.bash_profile
- If not found execute:
- Create a new system variable named
JAVA_HOME
with:export JAVA_HOME=<installed_java_path>
- e.g.
export JAVA_HOME=/usr/local/bin/AdoptOpenJDK/jdk-xxx
- e.g.
- Edit your existing
PATH
system variable by adding:- Your node installed path e.g.
export PATH=/usr/local/bin/nodejs:$PATH
- Your "JAVA_HOME" environment variable e.g.
export PATH=$JAVA_HOME/bin:$PATH
- Your node installed path e.g.
- Save and close
.bash_profile
- Within your terminal execute
source ~/.bash-profile
Each export
command should be on it's own line within .bash_profile