Platform Sync is a code review tool that synchronizes file and cursor positions between IDE (IntelliJ IDEA/Android Studio/VS Code) and Dicoding Review Platform.
- IntelliJ IDEA 2020.1 or later (build 200+)
- Android Studio 4.2 or later
- VS Code 1.60.0 or later
platform-sync/
├── .github/ # GitHub Actions workflows
├── intellij-plugin/ # IntelliJ IDEA plugin
│ ├── src/ # Plugin source code
│ ├── gradle/ # Gradle configuration
│ ├── build/ # Build output
│ ├── build.gradle.kts # Gradle build script
│ ├── gradle.properties # Gradle properties
│ ├── gradlew # Gradle wrapper script
│ ├── gradlew.bat # Gradle wrapper script for Windows
│ └── settings.gradle.kts # Gradle settings
├── vscode-extension/ # VS Code extension
│ ├── src/ # Extension source code
│ ├── types.ts # TypeScript types
│ ├── websocket.ts # WebSocket server
│ ├── package.json # NPM configuration
│ ├── tsconfig.json # TypeScript configuration
│ └── platform-sync-vscode-0.0.3.vsix # Packaged extension
└── package.json # Root NPM configuration
- Java JDK 17 or higher (for IntelliJ plugin)
- Node.js 18 or higher (for VS Code extension)
- npm (comes with Node.js)
You can build both plugins using npm:
# Install dependencies
npm install
# Build everything
npm run build
# Or build specific components
npm run build:intellij # Build IntelliJ plugin only
npm run build:vscode # Build VS Code extension only
Follow the guide for setting up the SDK at Setting Up Environment
- Open the Gradle tab in the top right
- Navigate to
platform-sync
->Tasks
->intellij
->buildPlugin
- Wait for the build to complete
- Open the
intellij-plugin
directory in IntelliJ IDEA - Install dependencies:
./gradlew build
- Start development:
./gradlew runIde
- Open IntelliJ IDEA/Android Studio settings -> Plugins
- Click the gear icon and select "Install Plugin from Disk..."
- Navigate to
intellij-plugin/build/distributions/
- Restart the IDE when prompted
- Open the
vscode-extension
directory in VS Code - Install dependencies:
npm install
- Start development:
npm run dev
- Press F5 to launch a new VS Code window with the extension
npm run build:vscode # Build the extension
npm run build:vscode # Create VSIX package
The packaged extension will be available as a .vsix
file in the vscode-extension/dist
directory.
- In VS Code, press Ctrl+Shift+P
- Type "Install from VSIX"
- Select the
.vsix
file from thevscode-extension
directory
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
- Create and push a new tag starting with 'v' (e.g., v1.0.0)
- GitHub Actions will automatically:
- Build both plugins
- Create a GitHub release with both artifacts
- Publish the VS Code extension to the marketplace
npm run build
- Build both pluginsnpm run build:intellij
- Build IntelliJ plugin onlynpm run build:vscode
- Build VS Code extension onlynpm run dev:vscode
- Start VS Code extension in development modenpm run dev:intellij
- Start IntelliJ plugin in development modenpm run lint
- Run lintingnpm run clean
- Clean build artifacts