Feathr Scala Project Developer Guide
IntelliJ Setup
IntelliJ is the recommended IDE to use when developing Feathr. Please visit IntelliJ’s installation guide to install it in your local machine. To import Feathr as a new project:
- Git clone Feathr into your local machine. i.e. via https
git clone https://github.com/linkedin/feathr.git
or sshgit clone git@github.com:linkedin/feathr.git
- In IntelliJ, select
File
>Project from Existing Sources...
and selectfeathr
from the directory you cloned. - Under
Import project from external model
selectsbt
. ClickNext
. - Under
Project JDK
specify a valid Java1.8
JDK and select SBT shell forproject reload
andbuilds
. - Click
Finish
. - You should see something like
[success] Total time: 5 s, completed Jun 1, 2022 9:43:26 PM
in sbt shell.
Setup Verification
After waiting for IntelliJ to index, verify your setup by running a test suite in IntelliJ.
- Search for and open a random test, i.e. here we will go with
AnchoredFeaturesIntegTest
as shown in the IntelliJ screenshot below. - Next to the class declaration, right click on the two green arrows and select
Run 'AnchoredFeaturesIntegTest'
. It could be any test case. - Verify if all test cases have passed.
Scala Coding Style Guide
Please checkout Databricks’ Scala Style Guide or the official Scala Style Guide.
Building and Testing
Feathr is compiled using SBT.
To compile, run
sbt compile
To execute tests, run
sbt test
To execute a single test suite, run
sbt 'testOnly com.linkedin.feathr.offline.AnchoredFeaturesIntegTest'
Refer to SBT docs for more commands.