Verificando autenticación…

Skip to main content

Code Editors

This section describes the steps to install and configure the following code editors:

  • IntelliJ IDEA Community Edition
  • Visual Studio Code
  • Cursor

These editors are widely used in the software development industry and offer a variety of features that facilitate code writing, debugging, and management.

Visual Studio Code Installation

For more details, you can visit the official Visual Studio Code website at https://code.visualstudio.com/

Installing visual-studio-code with brew
brew install --cask visual-studio-code

After installation, you can find Visual Studio Code in the "Applications" folder and run it from there.

Cursor Installation

Cursor is a code editor based on Visual Studio Code with built-in AI capabilities. It is compatible with VS Code extensions and shortcuts, so it will feel familiar if you already use that editor.

For more details, you can visit the official Cursor website at https://cursor.com/download

Installing cursor with brew
brew install --cask cursor

After installation, you can find Cursor in the "Applications" folder and run it from there.

IntelliJ IDEA Community Edition Installation

IntelliJ IDEA is an intelligent and context-sensitive IDE for working with Java and other JVM languages like Kotlin, Scala, and Groovy in all types of applications.

Installing intellij-idea with brew
brew install --cask intellij-idea

Local Environment Configuration

warning

In each project, the local profile option must be configured.

In the menu Run → Edit Configuration add the value -Dspring.profiles.active=local in the Environment variables option.

Local configuration profile in IntelliJ