Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add scala to language template #14

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

cheerio-pixel
Copy link

@cheerio-pixel cheerio-pixel commented Mar 27, 2025

Summary by CodeRabbit

  • New Features

    • Introduced automation that streamlines the compilation and execution of the Scala application.
    • Added a new application entry point and user guidance configuration that highlights required tool versions and editable components.
    • Enabled containerized deployment support for a smoother runtime experience.
  • Chores

    • Updated build configurations and dependency management to ensure reliable and efficient builds.
    • Improved repository hygiene by excluding temporary build artifacts and IDE-specific files.

Copy link

coderabbitai bot commented Mar 27, 2025

Caution

Review failed

An error occurred during the review process. Please try again later.

Walkthrough

This pull request introduces several new files to establish a complete Scala project setup. It adds shell scripts for compiling with sbt assembly and running the resulting JAR. Additionally, essential build configuration files (build.sbt, build.properties, plugins.sbt) and a .gitignore file are provided. A basic Scala Main object is included for application startup, along with a configuration file (config.yml) that outlines required executables. A Dockerfile for Scala 3.3.5 is also introduced, setting up the container environment to support the build and deployment pipeline.

Changes

File(s) Change Summary
languages/scala/code/.codecrafters/compile.sh, languages/scala/code/.codecrafters/run.sh Added new shell scripts: one for compiling the Scala project using sbt assembly and another for running the generated JAR with error handling.
languages/scala/code/build.sbt, languages/scala/code/project/build.properties, languages/scala/code/project/plugins.sbt Introduced build configurations: Scala version, project version, organization details, assembly settings, and the sbt-assembly plugin addition.
languages/scala/code/.gitignore New .gitignore file to exclude build artifacts, IDE files, and directories such as target, .bloop/, .bsp/, and Metals configurations.
languages/scala/code/src/main/scala/Main.scala Added a new Scala Main object for application startup, including a debugging print statement.
languages/scala/config.yml Created a configuration file specifying the required sbt version and identifying a user-editable Scala source file.
languages/scala/dockerfiles/scala-3.3.5.Dockerfile Provided a Dockerfile for Scala 3.3.5 that sets up JDK, installs sbt, copies build files, and executes compilation steps within a container.

Sequence Diagram(s)

sequenceDiagram
    participant Dev as Developer
    participant CS as compile.sh
    participant SB as SBT Assembly
    participant RS as run.sh
    participant Jar as Scala JAR

    Dev->>CS: Execute compile.sh
    CS->>SB: Run "sbt assembly"
    SB-->>CS: Return compiled JAR
    CS-->>Dev: Compilation result

    Dev->>RS: Execute run.sh with args
    RS->>Jar: Run "java -jar [JAR]"
    Jar-->>RS: Application output
Loading

Poem

In the realm of code, I hop so free,
Compile and run scripts set my heart aflutter!
A Scala circus of commands and dreams,
With Docker and builds that never sputter.
I bound with joy through every new line,
Celebrating each change with a happy, twitching nose! 🐇✨


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
languages/scala/config.yml (1)

1-4: Solid Configuration Setup
The configuration file properly declares the required executable and the user-editable file. As a minor refinement, consider quoting the sbt (1.10.7) value to avoid any potential YAML parsing ambiguity (e.g., required_executable: "sbt (1.10.7)").

languages/scala/code/.codecrafters/run.sh (1)

1-12: Shell script execution and quoting improvement.
The script is clear and uses set -e appropriately to ensure early exit on error. However, on line 11 the jar path is not fully quoted, which triggers shellcheck warnings regarding literal curly braces. To avoid potential issues, consider quoting the jar path as shown below:

- exec java -jar ./target/scala-3.3.5/{{course_slug}} "$@"
+ exec java -jar "./target/scala-3.3.5/{{course_slug}}" "$@"
🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 4756981 and 127dd44.

📒 Files selected for processing (9)
  • languages/scala/code/.codecrafters/compile.sh (1 hunks)
  • languages/scala/code/.codecrafters/run.sh (1 hunks)
  • languages/scala/code/.gitignore (1 hunks)
  • languages/scala/code/build.sbt (1 hunks)
  • languages/scala/code/project/build.properties (1 hunks)
  • languages/scala/code/project/plugins.sbt (1 hunks)
  • languages/scala/code/src/main/scala/Main.scala (1 hunks)
  • languages/scala/config.yml (1 hunks)
  • languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
languages/scala/code/.codecrafters/run.sh

[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)

🪛 Hadolint (2.12.0)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile

[error] 44-44: invalid flag: --exclude

(DL1000)

🔇 Additional comments (7)
languages/scala/code/project/build.properties (1)

1-2: Valid SBT Version Declaration
The file correctly specifies the SBT version as 1.10.7, which aligns with the configuration defined in config.yml.

languages/scala/code/project/plugins.sbt (1)

1-3: Inclusion of sbt-assembly Plugin
The addition of the sbt-assembly plugin with version 2.3.1 is correct and will enable fat JAR creation for the Scala project.

languages/scala/code/src/main/scala/Main.scala (1)

1-6: Clean Main Object Implementation
The Main object leverages the App trait effectively, and the inclusion of a debug log statement to standard error is useful. The commented block provides clear guidance for future implementation.

languages/scala/code/.codecrafters/compile.sh (1)

1-12: Effective Compile Script
The shell script is concise and well-commented. Using set -e ensures the script exits on failure, and invoking sbt assembly meets the required build step for packaging the application.

languages/scala/code/.gitignore (1)

1-7: Gitignore rules are well-defined.
The file correctly excludes build artifacts and IDE-specific directories related to Scala (e.g., target, bloop, bsp, metals).

languages/scala/code/build.sbt (1)

1-17: Build configuration looks solid.
The build file successfully sets the Scala version, project version, organization details, and defines the assembly jar name with a placeholder ({{course_slug}}). Ensure that the templating system properly replaces placeholders during your build or deployment process.

languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1)

1-42: Dockerfile environment setup review.
The Dockerfile sets up the Scala environment well—installing required apt packages, adding the Scala SBT repositories, and configuring SBT with a pinned version. Ensure that using SBT version 1.9.9 aligns with your project needs and that the multi-stage approach (switching from a focal to an alpine image) is tested for compatibility with your build and deployment pipeline.

Also applies to: 46-48

Comment on lines +43 to +45
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses
COPY --exclude=.git --exclude=README.md . /app

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Critical issue with COPY command flags.
The COPY command on line 44 uses unsupported --exclude flags. Docker does not support these flags in the COPY command. Instead, manage exclusions by using a .dockerignore file (e.g., include .git and README.md there) and update the command as follows:

- COPY --exclude=.git --exclude=README.md . /app
+ COPY . /app
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses
COPY --exclude=.git --exclude=README.md . /app
# .git & README.md are unique per-repository. We ignore them on first copy to prevent cache misses
COPY . /app
🧰 Tools
🪛 Hadolint (2.12.0)

[error] 44-44: invalid flag: --exclude

(DL1000)

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

♻️ Duplicate comments (1)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1)

10-10: ⚠️ Potential issue

Critical Issue: Unsupported Flags in COPY Command
The COPY command on line 10 uses --exclude flags, which are not supported in Dockerfile syntax. To exclude files such as .git and README.md, please remove the unsupported flags and manage exclusions via a .dockerignore file instead. For example, update the command as follows:

- COPY --exclude=.git --exclude=README.md . /app
+ COPY . /app

Also ensure that your .dockerignore file includes entries for .git and README.md to prevent them from being copied.

🧰 Tools
🪛 Hadolint (2.12.0)

[error] 10-10: invalid flag: --exclude

(DL1000)

🧹 Nitpick comments (1)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1)

13-13: Suggestion: Verify Execution Permissions for the Compile Script
The Dockerfile runs the script at .codecrafters/compile.sh. Please ensure that this script exists in the expected location and has the proper execute permissions, otherwise the build may fail.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro (Legacy)

📥 Commits

Reviewing files that changed from the base of the PR and between 127dd44 and 7a335e9.

📒 Files selected for processing (1)
  • languages/scala/dockerfiles/scala-3.3.5.Dockerfile (1 hunks)
🧰 Additional context used
🪛 Hadolint (2.12.0)
languages/scala/dockerfiles/scala-3.3.5.Dockerfile

[error] 10-10: invalid flag: --exclude

(DL1000)

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
languages/scala/code/.codecrafters/run.sh (1)

11-11: Resolve Shellcheck Warning: Quote the JAR File Path

Shellcheck is flagging the unquoted placeholder ({{course_slug}}) in the file path. To clarify that the curly braces are intentional literals (used here as a templating placeholder) and to suppress the SC1083 warnings, consider enclosing the JAR file path in quotes.

-exec java -jar ./target/scala-3.3.5/{{course_slug}}.jar "$@"
+exec java -jar "./target/scala-3.3.5/{{course_slug}}.jar" "$@"
🧰 Tools
🪛 Shellcheck (0.10.0)

[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro (Legacy)

📥 Commits

Reviewing files that changed from the base of the PR and between 7a335e9 and 5483a97.

📒 Files selected for processing (1)
  • languages/scala/code/.codecrafters/run.sh (1 hunks)
🧰 Additional context used
🪛 Shellcheck (0.10.0)
languages/scala/code/.codecrafters/run.sh

[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This { is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)


[warning] 11-11: This } is literal. Check expression (missing ;/\n?) or quote it.

(SC1083)

🔇 Additional comments (1)
languages/scala/code/.codecrafters/run.sh (1)

1-9: Overall Script Structure Looks Good

The script uses a proper shebang, includes useful comments, and employs set -e to ensure early exit on failure. This structure adheres to typical shell script best practices for such utility scripts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant