Development Environment Setup
General Setup
Browsers
- Chrome
- MS Edge
- Firefox
IDEs
Version Control
Source Tree
Git
GitHub Desktop
Other Tools
JavaScript / Web
Java
Java 8 (JRE and JDK)
Setting $JAVA_HOME environment variable: https://mkyong.com/java/how-to-set-java_home-environment-variable-on-mac-os-x/
Add the following to .bash_profile
export JAVA_HOME=$(/usr/libexec/java_home)- Check that JAVA_HOME is set:
echo $JAVA_HOME - Check Java version:
java -version - Check that a JDK is installed:
javac -version
Maven
Add the following to .bash_profile so the maven reference is persisted on the PATH
export PATH=$PATH:/Users/jcornwell/apache-maven-3.6.3/bin- Check that Maven is installed:
mvn -v
Gradle
Add the following to .bash_profile so the gradle reference is persisted on the PATH
export PATH=$PATH:/opt/gradle/gradle-6.2.2/bin- Check that Gradle is installed:
gradle -v
Kubernetes