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

added docker check to workflow #2414

Open
wants to merge 30 commits into
base: develop
Choose a base branch
from

Conversation

VanshikaSabharwal
Copy link

@VanshikaSabharwal VanshikaSabharwal commented Nov 8, 2024

What kind of change does this PR introduce?

bugfix, feature request

Issue Number:

Fixes #2402

Did you add tests for your changes?

No

Snapshots/Videos:

image

If relevant, did you update the documentation?

Not relevent

Summary

Does this PR introduce a breaking change?

No

Other information

Have you read the contributing guide?

Yes

Summary by CodeRabbit

Release Notes

  • New Features

    • Introduced a new job in the GitHub Actions workflow to verify the Talawa Admin application starts correctly in Docker.
    • Added a Dockerfile for streamlined application deployment.
    • Included a new section in the installation guide detailing Docker setup, covering prerequisites, development, and production configurations.
  • Enhancements

    • Updated .dockerignore to optimize Docker image builds by excluding unnecessary files.
    • Modified server configuration to change the default port to 4321 and prevent automatic browser opening.

These changes aim to improve the development and deployment experience for users.

Copy link

coderabbitai bot commented Nov 8, 2024

Walkthrough

This pull request introduces significant updates to the Talawa Admin application, including the addition of a new GitHub Actions job named Docker-Start-Check to verify the application starts correctly in a Docker container. It also expands the .dockerignore file, creates a new Dockerfile for the Node.js application, modifies the vite.config.ts for server settings, and adds a new section in INSTALLATION.md for Docker installation instructions.

Changes

File Change Summary
.github/workflows/pull-request.yml Added a new job Docker-Start-Check to verify the Talawa Admin app starts in Docker.
.dockerignore Expanded with entries for *.log, *.lock, .DS_Store, .idea, .vscode, build, and out.
Dockerfile Created a new Dockerfile for the Node.js application, specifying base image, working directory, and commands.
config/vite.config.ts Modified server settings: set open to false, added host: '0.0.0.0', and changed port to 4321.
INSTALLATION.md Added a new section "Installation using Docker" with subsections for building and running the Docker container.

Assessment against linked issues

Objective Addressed Explanation
Verify that the Talawa Admin app starts in Docker (2402)

Possibly related issues

Possibly related PRs

Suggested reviewers

  • palisadoes
  • varshith257

Poem

In Docker's realm, we spin and weave,
Talawa's app, we now believe.
With checks in place, it starts with glee,
A hop, a jump, for all to see! 🐇
Build and run, let joy abound,
In every line, our dreams are found!


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 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 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.

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

github-actions bot commented Nov 8, 2024

Our Pull Request Approval Process

We have these basic policies to make the approval process smoother for our volunteer team.

Testing Your Code

Please make sure your code passes all tests. Our test code coverage system will fail if these conditions occur:

  1. The overall code coverage drops below the target threshold of the repository
  2. Any file in the pull request has code coverage levels below the repository threshold
  3. Merge conflicts

The process helps maintain the overall reliability of the code base and is a prerequisite for getting your PR approved. Assigned reviewers regularly review the PR queue and tend to focus on PRs that are passing.

Reviewers

Do not assign reviewers. Our Queue Monitors will review your PR and assign them.
When your PR has been assigned reviewers contact them to get your code reviewed and approved via:

  1. comments in this PR or
  2. our slack channel

Reviewing Your Code

Your reviewer(s) will have the following roles:

  1. arbitrators of future discussions with other contributors about the validity of your changes
  2. point of contact for evaluating the validity of your work
  3. person who verifies matching issues by others that should be closed.
  4. person who gives general guidance in fixing your tests

CONTRIBUTING.md

Read our CONTRIBUTING.md file. Most importantly:

  1. PRs with issues not assigned to you will be closed by the reviewer
  2. Fix the first comment in the PR so that each issue listed automatically closes

Other

  1. 🎯 Please be considerate of our volunteers' time. Contacting the person who assigned the reviewers is not advised unless they ask for your input. Do not @ the person who did the assignment otherwise.
  2. Read the CONTRIBUTING.md file make

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: 3

🧹 Outside diff range and nitpick comments (2)
.github/workflows/pull-request.yml (2)

278-283: Improve cleanup step reliability.

The cleanup steps should handle errors gracefully and verify container existence.

Apply this diff to improve cleanup reliability:

      - name: Stop Docker Container 
        if: always()
        run: |
-         docker stop talawa-admin-app-container
-         docker rm talawa-admin-app-container
+         if docker ps -a | grep -q talawa-admin-app-container; then
+           docker stop talawa-admin-app-container || true
+           docker rm talawa-admin-app-container || true
+         fi
🧰 Tools
🪛 yamllint

[error] 278-278: trailing spaces

(trailing-spaces)


[error] 283-283: trailing spaces

(trailing-spaces)


256-284: Consider enhancing the Docker check implementation.

While this implementation addresses the basic requirement of checking if the app starts in Docker, consider these architectural improvements:

  1. Add environment variables for configuration (ports, timeouts, etc.)
  2. Consider using Docker Compose for more complex setups
  3. Add logging of container output for debugging failures
  4. Consider implementing smoke tests beyond basic health checks

Would you like assistance in implementing any of these improvements?

🧰 Tools
🪛 actionlint

259-259: could not parse as YAML: yaml: line 259: did not find expected '-' indicator

(syntax-check)

🪛 yamllint

[warning] 257-257: wrong indentation: expected 4 but found 10

(indentation)


[warning] 260-260: wrong indentation: expected 12 but found 13

(indentation)


[error] 261-261: syntax error: expected , but found '?'

(syntax)


[error] 262-262: trailing spaces

(trailing-spaces)


[warning] 264-264: wrong indentation: expected 15 but found 13

(indentation)


[error] 267-267: trailing spaces

(trailing-spaces)


[warning] 268-268: wrong indentation: expected 15 but found 14

(indentation)


[error] 271-271: trailing spaces

(trailing-spaces)


[warning] 273-273: wrong indentation: expected 16 but found 15

(indentation)


[error] 275-275: trailing spaces

(trailing-spaces)


[error] 277-277: trailing spaces

(trailing-spaces)


[error] 278-278: trailing spaces

(trailing-spaces)


[error] 283-283: trailing spaces

(trailing-spaces)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between cd9dd1a and 1519682.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (1 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

259-259: could not parse as YAML: yaml: line 259: did not find expected '-' indicator

(syntax-check)

🪛 yamllint
.github/workflows/pull-request.yml

[warning] 257-257: wrong indentation: expected 4 but found 10

(indentation)


[warning] 260-260: wrong indentation: expected 12 but found 13

(indentation)


[error] 261-261: syntax error: expected , but found '?'

(syntax)


[error] 262-262: trailing spaces

(trailing-spaces)


[warning] 264-264: wrong indentation: expected 15 but found 13

(indentation)


[error] 267-267: trailing spaces

(trailing-spaces)


[warning] 268-268: wrong indentation: expected 15 but found 14

(indentation)


[error] 271-271: trailing spaces

(trailing-spaces)


[warning] 273-273: wrong indentation: expected 16 but found 15

(indentation)


[error] 275-275: trailing spaces

(trailing-spaces)


[error] 277-277: trailing spaces

(trailing-spaces)


[error] 278-278: trailing spaces

(trailing-spaces)


[error] 283-283: trailing spaces

(trailing-spaces)

.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
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

🧹 Outside diff range and nitpick comments (1)
.github/workflows/pull-request.yml (1)

275-295: Enhance health check implementation for better debugging.

While the current implementation with timeout and retry logic is good, consider these improvements:

  1. Add more detailed error messages
  2. Include debug logging
  3. Add comprehensive health checks

Apply this diff to enhance the implementation:

             - name: Check if Talawa Admin App is running
               run: |
                timeout=60
                while ! nc -z localhost 8080 && [ $timeout -gt 0 ]; do
+                echo "Waiting for application to start... ($timeout seconds remaining)"
                 sleep 1
                 timeout=$((timeout-1))
                done
                  
                if [ $timeout -eq 0 ]; then
-                echo "Timeout waiting for application to start"
+                echo "Error: Application failed to start within 60 seconds"
+                echo "Docker logs:"
+                docker logs talawa-admin-app-container
                 exit 1
                fi
               
         # Retry curl up to 3 times with 5s delay
         for i in {1..3}; do
+           echo "Attempt $i/3: Checking application health..."
           if curl --fail --silent http://localhost:8080/index.html; then
+             echo "Application is healthy!"
              exit 0
           fi
+           echo "Health check failed, retrying in 5 seconds..."
           sleep 5
         done
+        echo "Error: Application health check failed after 3 attempts"
+        echo "Docker logs:"
+        docker logs talawa-admin-app-container
         exit 1
🧰 Tools
🪛 yamllint

[error] 282-282: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 1519682 and 7d04c94.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (1 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

260-260: could not parse as YAML: yaml: line 260: did not find expected '-' indicator

(syntax-check)

🪛 yamllint
.github/workflows/pull-request.yml

[warning] 257-257: wrong indentation: expected 4 but found 10

(indentation)


[warning] 261-261: wrong indentation: expected 12 but found 13

(indentation)


[error] 262-262: syntax error: expected , but found '?'

(syntax)


[error] 263-263: trailing spaces

(trailing-spaces)


[warning] 265-265: wrong indentation: expected 15 but found 13

(indentation)


[error] 266-266: trailing spaces

(trailing-spaces)


[error] 270-270: trailing spaces

(trailing-spaces)


[warning] 271-271: wrong indentation: expected 10 but found 12

(indentation)


[error] 282-282: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)


[error] 296-296: trailing spaces

(trailing-spaces)


[error] 297-297: trailing spaces

(trailing-spaces)


[error] 302-302: trailing spaces

(trailing-spaces)

🔇 Additional comments (2)
.github/workflows/pull-request.yml (2)

267-273: LGTM! Docker configuration is properly set up.

The Docker build and run configuration is correct with:

  • Proper image tagging
  • Correct port mapping
  • Consistent container naming
🧰 Tools
🪛 yamllint

[error] 270-270: trailing spaces

(trailing-spaces)


[warning] 271-271: wrong indentation: expected 10 but found 12

(indentation)


297-302: LGTM! Cleanup steps are properly configured.

The cleanup configuration ensures proper resource cleanup by:

  • Running regardless of previous step outcomes (if: always())
  • Properly stopping and removing the container
🧰 Tools
🪛 yamllint

[error] 297-297: trailing spaces

(trailing-spaces)


[error] 302-302: trailing spaces

(trailing-spaces)

.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
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: 4

🧹 Outside diff range and nitpick comments (1)
.github/workflows/pull-request.yml (1)

256-288: Consider enhancing error handling and logging.

While the implementation meets the basic requirements, consider these improvements for better debugging and reliability:

  1. Add error logging for Docker build failures
  2. Log container status before health checks
  3. Preserve logs on failure for debugging

Example enhancement:

      - name: Build Docker image
        run: |
+         # Log Docker version and system info
+         docker version
+         docker info
          docker build -t talawa-admin-app . || {
+           echo "Docker build failed. Check the logs above for details."
+           exit 1
+         }

      - name: Run Docker Container
        run: |
          docker run -d --name talawa-admin-app-container -p 8080:8080 talawa-admin-app
+         # Log container status
+         docker ps
+         docker logs talawa-admin-app-container
🧰 Tools
🪛 actionlint

260-260: could not parse as YAML: yaml: line 260: did not find expected '-' indicator

(syntax-check)

🪛 yamllint

[warning] 257-257: wrong indentation: expected 4 but found 10

(indentation)


[warning] 261-261: wrong indentation: expected 12 but found 13

(indentation)


[error] 262-262: syntax error: expected , but found '?'

(syntax)


[error] 263-263: trailing spaces

(trailing-spaces)


[warning] 265-265: wrong indentation: expected 15 but found 13

(indentation)


[error] 266-266: trailing spaces

(trailing-spaces)


[error] 270-270: trailing spaces

(trailing-spaces)


[warning] 271-271: wrong indentation: expected 10 but found 12

(indentation)


[error] 281-281: trailing spaces

(trailing-spaces)


[error] 282-282: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 7d04c94 and f8389f6.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (1 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

260-260: could not parse as YAML: yaml: line 260: did not find expected '-' indicator

(syntax-check)

🪛 yamllint
.github/workflows/pull-request.yml

[warning] 257-257: wrong indentation: expected 4 but found 10

(indentation)


[warning] 261-261: wrong indentation: expected 12 but found 13

(indentation)


[error] 262-262: syntax error: expected , but found '?'

(syntax)


[error] 263-263: trailing spaces

(trailing-spaces)


[warning] 265-265: wrong indentation: expected 15 but found 13

(indentation)


[error] 266-266: trailing spaces

(trailing-spaces)


[error] 270-270: trailing spaces

(trailing-spaces)


[warning] 271-271: wrong indentation: expected 10 but found 12

(indentation)


[error] 281-281: trailing spaces

(trailing-spaces)


[error] 282-282: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)

.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 8, 2024
Copy link
Member

@varshith257 varshith257 left a comment

Choose a reason for hiding this comment

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

It seems workflow added isn't triggered?

Copy link
Member

@pranshugupta54 pranshugupta54 left a comment

Choose a reason for hiding this comment

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

Looks like there's an error in the YAML file—possibly due to formatting or indentation.

Check: https://github.com/PalisadoesFoundation/talawa-admin/actions/runs/11741762559/workflow#L260

@VanshikaSabharwal
Copy link
Author

Looks like there's an error in the YAML file—possibly due to formatting or indentation.

Check: https://github.com/PalisadoesFoundation/talawa-admin/actions/runs/11741762559/workflow#L260

Yes you are right, there is indentation error due to which the workflow is not triggered. I am working on it.

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

🧹 Outside diff range and nitpick comments (4)
.github/workflows/pull-request.yml (4)

267-273: Add error handling for Docker build and run steps.

The Docker build and run steps should include error handling to provide clear feedback if they fail.

      - name: Build Docker image
        run: |
+         if ! docker build -t talawa-admin-app .; then
+           echo "Failed to build Docker image"
+           exit 1
+         fi
-         docker build -t talawa-admin-app .

      - name: Run Docker Container
        run: |
+         if ! docker run -d --name talawa-admin-app-container -p 8080:8080 talawa-admin-app; then
+           echo "Failed to start Docker container"
+           exit 1
+         fi
-         docker run -d --name talawa-admin-app-container -p 8080:8080 talawa-admin-app
🧰 Tools
🪛 yamllint

[error] 270-270: trailing spaces

(trailing-spaces)


275-286: Enhance health check with HTTP status code verification.

The current health check only verifies if the index page is accessible. It should also verify the HTTP status code to ensure the application is responding correctly.

      - name: Check if Talawa Admin App is running
        run: |
          timeout=60
          while ! nc -z localhost 8080 && [ $timeout -gt 0 ]; do
            sleep 1
            timeout=$((timeout-1))
          done
          if [ $timeout -eq 0 ]; then
            echo "Timeout waiting for application to start"
            exit 1
          fi
-         curl --fail --silent http://localhost:8080/index.html || exit 1
+         response=$(curl -s -w "%{http_code}" http://localhost:8080/index.html -o /dev/null)
+         if [ "$response" != "200" ]; then
+           echo "Application health check failed with status code: $response"
+           exit 1
+         fi

288-292: Add error handling to cleanup step.

The cleanup step should handle errors gracefully and provide feedback if the container cannot be stopped or removed.

      - name: Stop Docker Container 
        if: always()
        run: |
-         docker stop talawa-admin-app-container
-         docker rm talawa-admin-app-container
+         if ! docker stop talawa-admin-app-container; then
+           echo "Warning: Failed to stop Docker container"
+         fi
+         if ! docker rm talawa-admin-app-container; then
+           echo "Warning: Failed to remove Docker container"
+         fi
🧰 Tools
🪛 yamllint

[error] 288-288: trailing spaces

(trailing-spaces)


263-263: Fix trailing spaces in YAML file.

Remove trailing spaces to maintain consistent formatting and comply with YAML best practices.

-        uses: actions/checkout@v4    
+        uses: actions/checkout@v4
-        uses: docker/setup-buildx-action@v3        
+        uses: docker/setup-buildx-action@v3
-          docker build -t talawa-admin-app .    
+          docker build -t talawa-admin-app .
-          curl --fail --silent http://localhost:8080/index.html || exit 1    
+          curl --fail --silent http://localhost:8080/index.html || exit 1
-      - name: Stop Docker Container     
+      - name: Stop Docker Container
-          docker rm talawa-admin-app-container    
+          docker rm talawa-admin-app-container

Also applies to: 266-266, 270-270, 287-287, 288-288, 293-293

🧰 Tools
🪛 yamllint

[error] 263-263: trailing spaces

(trailing-spaces)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between f8389f6 and b93aed6.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (2 hunks)
🧰 Additional context used
🪛 yamllint
.github/workflows/pull-request.yml

[error] 263-263: trailing spaces

(trailing-spaces)


[error] 266-266: trailing spaces

(trailing-spaces)


[error] 270-270: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)


[error] 288-288: trailing spaces

(trailing-spaces)


[error] 293-293: trailing spaces

(trailing-spaces)


[error] 304-304: no new line character at the end of file

(new-line-at-end-of-file)

.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
Copy link

codecov bot commented Nov 8, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 98.26%. Comparing base (fb913e1) to head (b09c696).

Additional details and impacted files
@@           Coverage Diff            @@
##           develop    #2414   +/-   ##
========================================
  Coverage    98.26%   98.26%           
========================================
  Files          297      297           
  Lines         8638     8638           
  Branches      2514     2514           
========================================
  Hits          8488     8488           
  Misses         139      139           
  Partials        11       11           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@varshith257
Copy link
Member

@palisadoes I am still surprised as we don't have any Dockerfile in talawa-admin and how we can support this workflow though 😄

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

🧹 Outside diff range and nitpick comments (4)
.github/workflows/pull-request.yml (4)

261-266: Consider using Docker layer caching for faster builds.

While the current setup works, you could optimize the Docker build process by enabling layer caching.

      - name: Set up Docker
        uses: docker/setup-buildx-action@v3
+       with:
+         buildkitd-flags: --debug
+         driver-opts: |
+           image=moby/buildkit:latest
+         cache-from: type=gha
+         cache-to: type=gha,mode=max
🧰 Tools
🪛 yamllint

[error] 263-263: trailing spaces

(trailing-spaces)


[error] 266-266: trailing spaces

(trailing-spaces)


267-274: Add Docker build error handling and logging.

The Docker build and run steps could benefit from additional error handling and logging.

      - name: Build Docker image
        run: |
+         set -e
+         echo "Building Docker image..."
          docker build -t talawa-admin-app .
+         echo "Docker image built successfully"

      - name: Run Docker Container
        run: |
+         set -e
+         echo "Starting Docker container..."
          docker run -d --name talawa-admin-app-container -p 8080:8080 talawa-admin-app
+         echo "Docker container started successfully"
🧰 Tools
🪛 yamllint

[error] 270-270: trailing spaces

(trailing-spaces)


Line range hint 256-304: Fix trailing whitespace issues.

There are several trailing whitespace issues in the YAML file that should be cleaned up.

-      - name: Set up Docker
-        uses: docker/setup-buildx-action@v3
-        
+      - name: Set up Docker
+        uses: docker/setup-buildx-action@v3

-      - name: Stop Docker Container 
+      - name: Stop Docker Container
🧰 Tools
🪛 yamllint

[error] 263-263: trailing spaces

(trailing-spaces)


[error] 266-266: trailing spaces

(trailing-spaces)


[error] 270-270: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)


[error] 288-288: trailing spaces

(trailing-spaces)


[error] 293-293: trailing spaces

(trailing-spaces)


304-304: Add newline at end of file.

Add a newline character at the end of the file to comply with POSIX standards.

          exit 1
+
🧰 Tools
🪛 yamllint

[error] 304-304: no new line character at the end of file

(new-line-at-end-of-file)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between b93aed6 and a0ee511.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (2 hunks)
🧰 Additional context used
🪛 yamllint
.github/workflows/pull-request.yml

[error] 263-263: trailing spaces

(trailing-spaces)


[error] 266-266: trailing spaces

(trailing-spaces)


[error] 270-270: trailing spaces

(trailing-spaces)


[error] 287-287: trailing spaces

(trailing-spaces)


[error] 288-288: trailing spaces

(trailing-spaces)


[error] 293-293: trailing spaces

(trailing-spaces)


[error] 304-304: no new line character at the end of file

(new-line-at-end-of-file)

🔇 Additional comments (3)
.github/workflows/pull-request.yml (3)

256-260: LGTM! Job configuration is well structured.

The job configuration is correctly set up with appropriate dependencies on both Code-Quality-Checks and Test-Application jobs, ensuring proper sequencing of checks.


275-287: Health check implementation looks robust.

The health check implementation includes a good timeout mechanism and proper error handling. The 60-second timeout is reasonable for container startup.

🧰 Tools
🪛 yamllint

[error] 287-287: trailing spaces

(trailing-spaces)


288-292: LGTM! Cleanup step is properly configured.

The cleanup step is correctly set up with if: always() to ensure container cleanup regardless of previous step results.

🧰 Tools
🪛 yamllint

[error] 288-288: trailing spaces

(trailing-spaces)

coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 8, 2024
@VanshikaSabharwal
Copy link
Author

VanshikaSabharwal commented Nov 8, 2024

@palisadoes I am still surprised as we don't have any Dockerfile in talawa-admin and how we can support this workflow though 😄

Hey @varshith257, Can i create a DockerFile ?

@varshith257
Copy link
Member

Check #1075

@VanshikaSabharwal
Copy link
Author

VanshikaSabharwal commented Nov 8, 2024

Check #1075

Yes, @varshith257 I checked this and i found out that there is an empty Dockerfile so at this point can i make a docker file with proper code?

@VanshikaSabharwal
Copy link
Author

Now this PR also solves #1075 issue by adding Dockerfile,.docker-ignore and docker-compose file.

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

🧹 Outside diff range and nitpick comments (3)
.github/workflows/pull-request.yml (3)

264-271: Consider removing debug flags in production.

While debug flags are helpful during development, they might expose sensitive information in production logs.

      - name: Set up Docker
        uses: docker/setup-buildx-action@v3
        with:
-         buildkitd-flags: --debug
          driver-opts: |
            image=moby/buildkit:latest
          cache-from: type=gha
          cache-to: type=gha,mode=max
🧰 Tools
🪛 yamllint

[error] 266-266: syntax error: expected , but found ''

(syntax)


280-286: Consider adding container resource limits.

To prevent resource exhaustion, consider adding memory and CPU limits to the container.

      - name: Run Docker Container
        run: |
          set -e
          echo "Started Docker container..."
-         docker run -d --name talawa-admin-app-container -p 4321:4321 talawa-admin-app
+         docker run -d --name talawa-admin-app-container \
+           --memory=2g \
+           --cpus=2 \
+           -p 4321:4321 talawa-admin-app
          echo "Docker container started successfully"

263-263: Fix YAML formatting issues.

There are several formatting issues in the file:

  • Remove trailing spaces (lines 263, 279, 308, 309, 315)
  • Add newline at end of file (line 326)

Also applies to: 279-279, 308-308, 309-309, 315-315, 326-326

🧰 Tools
🪛 yamllint

[error] 263-263: trailing spaces

(trailing-spaces)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 17a12f7 and a44ecdb.

📒 Files selected for processing (2)
  • .github/workflows/pull-request.yml (2 hunks)
  • docker-compose.yaml (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • docker-compose.yaml
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

260-260: could not parse as YAML: yaml: line 260: did not find expected '-' indicator

(syntax-check)

🪛 yamllint
.github/workflows/pull-request.yml

[error] 263-263: trailing spaces

(trailing-spaces)


[error] 266-266: syntax error: expected , but found ''

(syntax)


[error] 279-279: trailing spaces

(trailing-spaces)


[error] 308-308: trailing spaces

(trailing-spaces)


[error] 309-309: trailing spaces

(trailing-spaces)


[error] 315-315: trailing spaces

(trailing-spaces)


[error] 326-326: no new line character at the end of file

(new-line-at-end-of-file)

🔇 Additional comments (2)
.github/workflows/pull-request.yml (2)

256-259: LGTM! Job configuration follows best practices.

The job dependencies ensure that code quality checks and tests pass before attempting Docker validation.


309-314: LGTM! Cleanup steps are properly implemented.

The cleanup ensures the container is always stopped and removed, regardless of the job outcome.

🧰 Tools
🪛 yamllint

[error] 309-309: trailing spaces

(trailing-spaces)

.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 11, 2024
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: 2

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between a44ecdb and 526a2cf.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (8 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

61-61: property "changed_files" is not defined in object type {changed-files: {conclusion: string; outcome: string; outputs: {string => string}}}

(expression)


62-62: shellcheck reported issue in this script: SC2086:info:1:12: Double quote to prevent globbing and word splitting

(shellcheck)


207-207: shellcheck reported issue in this script: SC2043:warning:1:13: This loop will only ever run once. Bad quoting or missing glob/expansion?

(shellcheck)


269-269: input "cache-from" is not defined in action "docker/setup-buildx-action@v3". available inputs are "append", "buildkitd-config", "buildkitd-config-inline", "buildkitd-flags", "cache-binary", "cleanup", "config", "config-inline", "driver", "driver-opts", "endpoint", "install", "platforms", "use", "version"

(action)


270-270: input "cache-to" is not defined in action "docker/setup-buildx-action@v3". available inputs are "append", "buildkitd-config", "buildkitd-config-inline", "buildkitd-flags", "cache-binary", "cleanup", "config", "config-inline", "driver", "driver-opts", "endpoint", "install", "platforms", "use", "version"

(action)


287-287: shellcheck reported issue in this script: SC2086:info:3:35: Double quote to prevent globbing and word splitting

(shellcheck)


287-287: shellcheck reported issue in this script: SC2086:info:11:6: Double quote to prevent globbing and word splitting

(shellcheck)

🔇 Additional comments (6)
.github/workflows/pull-request.yml (6)

Line range hint 92-126: LGTM! Docker configuration files are properly protected.

The list of protected files correctly includes docker-compose.yaml and Dockerfile, ensuring these critical configuration files require proper authorization to modify.


256-260: LGTM! Proper job sequencing.

The job dependencies ensure Docker checks run after code quality and tests pass, which is the correct order.


272-278: LGTM! Robust build step configuration.

The build step includes proper error handling with set -e and informative logging.


279-285: LGTM! Container configuration aligns with application settings.

The port mapping (4321) correctly matches the application's configured port.


308-313: LGTM! Robust cleanup configuration.

The cleanup step is properly configured with if: always() to ensure containers are removed regardless of job outcome.


264-271: Verify buildx action version compatibility.

The cache configuration options might require a newer version of the buildx action.

✅ Verification successful

Let me verify the cache configuration options in the buildx action documentation.


Let me try a different approach to verify the cache configuration options.


Let me try one final verification to check the cache configuration in the action's documentation.


Cache configuration is valid for buildx action v3

The cache configuration using type=gha is a valid and commonly used feature in GitHub Actions with Docker Buildx. The workflow is using v3 of the action (currently at v3.7.1), which fully supports GitHub Actions cache backend. While the cache options are not explicitly documented in the README, they are standard BuildKit cache configuration options that work with the action.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check buildx action versions and their features
gh api repos/docker/setup-buildx-action/releases --jq '.[].tag_name' | head -n 5

Length of output: 117


Script:

#!/bin/bash
# Check the content of action.yml in the latest version to verify input parameters
gh api repos/docker/setup-buildx-action/contents/action.yml --ref v3.7.1 | jq -r '.content' | base64 -d | grep -A 10 'cache-'

Length of output: 1561


Script:

#!/bin/bash
# Clone the repository and check the documentation
git clone https://github.com/docker/setup-buildx-action.git temp_buildx
cd temp_buildx
git checkout v3.7.1
cat README.md | grep -A 5 "cache-"

Length of output: 1584


Script:

#!/bin/bash
# Search for cache configuration in the entire README
cd temp_buildx
cat README.md | grep -B 2 -A 2 "type=gha" || echo "No direct matches found"

Length of output: 115

🧰 Tools
🪛 actionlint

269-269: input "cache-from" is not defined in action "docker/setup-buildx-action@v3". available inputs are "append", "buildkitd-config", "buildkitd-config-inline", "buildkitd-flags", "cache-binary", "cleanup", "config", "config-inline", "driver", "driver-opts", "endpoint", "install", "platforms", "use", "version"

(action)


270-270: input "cache-to" is not defined in action "docker/setup-buildx-action@v3". available inputs are "append", "buildkitd-config", "buildkitd-config-inline", "buildkitd-flags", "cache-binary", "cleanup", "config", "config-inline", "driver", "driver-opts", "endpoint", "install", "platforms", "use", "version"

(action)

.github/workflows/pull-request.yml Show resolved Hide resolved
.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 11, 2024
@palisadoes
Copy link
Contributor

  1. Remember the INSTALLATION.md file
  2. Why is the docker check failing?

@VanshikaSabharwal
Copy link
Author

  1. Remember the INSTALLATION.md file
  2. Why is the docker check failing?

Yes, I will update INSTALLATION.md and also i think that there is no health check point due to which the docker test is failing.

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

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 526a2cf and 41bb9cf.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (8 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

61-61: property "changed_files" is not defined in object type {changed-files: {conclusion: string; outcome: string; outputs: {string => string}}}

(expression)


62-62: shellcheck reported issue in this script: SC2086:info:1:12: Double quote to prevent globbing and word splitting

(shellcheck)


207-207: shellcheck reported issue in this script: SC2043:warning:1:13: This loop will only ever run once. Bad quoting or missing glob/expansion?

(shellcheck)


256-256: "steps" section is missing in job "Docker-Start-Check"

(syntax-check)


256-256: "runs-on" section is missing in job "Docker-Start-Check"

(syntax-check)


256-256: "Docker-Start-Check" job should not be empty. please remove this section if it's unnecessary

(syntax-check)


257-257: "steps" section is missing in job "name"

(syntax-check)


257-257: "runs-on" section is missing in job "name"

(syntax-check)


257-257: "name" job is scalar node but mapping node is expected

(syntax-check)


258-258: "steps" section is missing in job "runs-on"

(syntax-check)


258-258: "runs-on" section is missing in job "runs-on"

(syntax-check)


258-258: "runs-on" job is scalar node but mapping node is expected

(syntax-check)


259-259: "steps" section is missing in job "needs"

(syntax-check)


259-259: "runs-on" section is missing in job "needs"

(syntax-check)


259-259: "needs" job is sequence node but mapping node is expected

(syntax-check)


260-260: "steps" section is missing in job "steps"

(syntax-check)


260-260: "runs-on" section is missing in job "steps"

(syntax-check)


261-261: "steps" job is sequence node but mapping node is expected

(syntax-check)

🔇 Additional comments (4)
.github/workflows/pull-request.yml (4)

256-271: LGTM: Job configuration and Docker setup.

The job configuration is well-structured with proper dependencies and Docker buildx setup with GitHub Actions caching.

🧰 Tools
🪛 actionlint

256-256: "steps" section is missing in job "Docker-Start-Check"

(syntax-check)


256-256: "runs-on" section is missing in job "Docker-Start-Check"

(syntax-check)


256-256: "Docker-Start-Check" job should not be empty. please remove this section if it's unnecessary

(syntax-check)


257-257: "steps" section is missing in job "name"

(syntax-check)


257-257: "runs-on" section is missing in job "name"

(syntax-check)


257-257: "name" job is scalar node but mapping node is expected

(syntax-check)


258-258: "steps" section is missing in job "runs-on"

(syntax-check)


258-258: "runs-on" section is missing in job "runs-on"

(syntax-check)


258-258: "runs-on" job is scalar node but mapping node is expected

(syntax-check)


259-259: "steps" section is missing in job "needs"

(syntax-check)


259-259: "runs-on" section is missing in job "needs"

(syntax-check)


259-259: "needs" job is sequence node but mapping node is expected

(syntax-check)


260-260: "steps" section is missing in job "steps"

(syntax-check)


260-260: "runs-on" section is missing in job "steps"

(syntax-check)


261-261: "steps" job is sequence node but mapping node is expected

(syntax-check)


272-284: LGTM: Docker build and run configuration.

The Docker build and run steps include proper error handling with set -e and informative logging.


309-313: LGTM: Cleanup configuration.

The cleanup step is properly configured to run always and remove the container.


60-63: ⚠️ Potential issue

Fix environment variable quoting in eslint command.

The unquoted environment variable could cause issues with filenames containing spaces or special characters.

-        run: npx eslint ${CHANGED_FILES} && python .github/workflows/eslint_disable_check.py
+        run: npx eslint "${CHANGED_FILES}" && python .github/workflows/eslint_disable_check.py

Likely invalid or redundant comment.

🧰 Tools
🪛 actionlint

61-61: property "changed_files" is not defined in object type {changed-files: {conclusion: string; outcome: string; outputs: {string => string}}}

(expression)


62-62: shellcheck reported issue in this script: SC2086:info:1:12: Double quote to prevent globbing and word splitting

(shellcheck)

.github/workflows/pull-request.yml Outdated Show resolved Hide resolved
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: 3

🧹 Outside diff range and nitpick comments (1)
.github/workflows/pull-request.yml (1)

256-260: Consider adding timeout to the job.

The job should have a timeout to prevent hanging in case of issues.

  Docker-Start-Check:
    name: Check if Talawa Admin app starts in Docker
    runs-on: ubuntu-latest
    needs: [Code-Quality-Checks, Test-Application]
+   timeout-minutes: 10
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 41bb9cf and ec8ec5f.

📒 Files selected for processing (1)
  • .github/workflows/pull-request.yml (8 hunks)
🧰 Additional context used
🪛 actionlint
.github/workflows/pull-request.yml

61-61: property "changed_files" is not defined in object type {changed-files: {conclusion: string; outcome: string; outputs: {string => string}}}

(expression)


62-62: shellcheck reported issue in this script: SC2086:info:1:12: Double quote to prevent globbing and word splitting

(shellcheck)


207-207: shellcheck reported issue in this script: SC2043:warning:1:13: This loop will only ever run once. Bad quoting or missing glob/expansion?

(shellcheck)


269-269: input "cache-from" is not defined in action "docker/setup-buildx-action@v3". available inputs are "append", "buildkitd-config", "buildkitd-config-inline", "buildkitd-flags", "cache-binary", "cleanup", "config", "config-inline", "driver", "driver-opts", "endpoint", "install", "platforms", "use", "version"

(action)


270-270: input "cache-to" is not defined in action "docker/setup-buildx-action@v3". available inputs are "append", "buildkitd-config", "buildkitd-config-inline", "buildkitd-flags", "cache-binary", "cleanup", "config", "config-inline", "driver", "driver-opts", "endpoint", "install", "platforms", "use", "version"

(action)


287-287: shellcheck reported issue in this script: SC2086:info:3:35: Double quote to prevent globbing and word splitting

(shellcheck)


287-287: shellcheck reported issue in this script: SC2086:info:12:6: Double quote to prevent globbing and word splitting

(shellcheck)

🔇 Additional comments (1)
.github/workflows/pull-request.yml (1)

60-63: ⚠️ Potential issue

Fix environment variable quoting in eslint command.

The unquoted environment variable could cause issues with filenames containing spaces or special characters.

-        run: npx eslint ${CHANGED_FILES} && python .github/workflows/eslint_disable_check.py
+        run: npx eslint "${CHANGED_FILES}" && python .github/workflows/eslint_disable_check.py

Likely invalid or redundant comment.

🧰 Tools
🪛 actionlint

61-61: property "changed_files" is not defined in object type {changed-files: {conclusion: string; outcome: string; outputs: {string => string}}}

(expression)


62-62: shellcheck reported issue in this script: SC2086:info:1:12: Double quote to prevent globbing and word splitting

(shellcheck)

.github/workflows/pull-request.yml Show resolved Hide resolved
.github/workflows/pull-request.yml Show resolved Hide resolved
.github/workflows/pull-request.yml Show resolved Hide resolved
coderabbitai[bot]
coderabbitai bot previously approved these changes Nov 15, 2024
@VanshikaSabharwal
Copy link
Author

@palisadoes I have updated the INSTALLATION.md file and deleted the docker-compose.yml file, as I thought there was no specific reason to keep it, and it was causing issues.

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

🧹 Outside diff range and nitpick comments (1)
INSTALLATION.md (1)

155-155: Fix markdown formatting issues

Please address the following markdown formatting issues:

  1. Remove trailing colons from headers
  2. Add language specifiers to code blocks
  3. Use proper link formatting for URLs

Apply these changes:

-## Build the Docker Image:
+## Build the Docker Image
 
-```
+```bash
 docker build -t talawa-admin .

-## Run the Docker container:
+## Run the Docker container

- +bash
docker run -p 4321:4321 talawa-admin


-This will expose the container's port 4321 on your local machine, making the application accessible at http://localhost:4321.
+This will expose the container's port 4321 on your local machine, making the application accessible at [http://localhost:4321](http://localhost:4321).

Also applies to: 163-163, 159-159, 167-167, 171-171

🧰 Tools
🪛 Markdownlint

155-155: Punctuation: ':'
Trailing punctuation in heading

(MD026, no-trailing-punctuation)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between ec8ec5f and ef08944.

📒 Files selected for processing (1)
  • INSTALLATION.md (2 hunks)
🧰 Additional context used
🪛 Markdownlint
INSTALLATION.md

155-155: Punctuation: ':'
Trailing punctuation in heading

(MD026, no-trailing-punctuation)


163-163: Punctuation: ':'
Trailing punctuation in heading

(MD026, no-trailing-punctuation)


171-171: null
Bare URL used

(MD034, no-bare-urls)


159-159: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


167-167: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)

🔇 Additional comments (2)
INSTALLATION.md (2)

16-18: LGTM! Table of contents properly updated

The new Docker installation sections are correctly added to the table of contents with proper indentation.


168-168: LGTM! Port configuration is consistent

The Docker port configuration (4321) aligns with the existing application setup and environment configuration sections.

Also applies to: 171-171

INSTALLATION.md Outdated Show resolved Hide resolved
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: 2

🧹 Outside diff range and nitpick comments (3)
INSTALLATION.md (3)

170-172: Add language specifications to code blocks

The code blocks should specify the language for better syntax highlighting and documentation consistency.

Apply these changes:

-```
+```bash
 docker build -t talawa-admin .

- +bash
docker run -p 4321:4321 talawa-admin

Also applies to: 178-180

🧰 Tools
🪛 Markdownlint

170-170: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


156-158: Add Docker Compose installation to prerequisites

Docker Compose would simplify the development setup and make it easier to manage services.

Add Docker Compose installation instructions:

 1. Install Docker on your system:
    - [Docker Desktop for Windows/Mac](https://www.docker.com/products/docker-desktop)
    - [Docker Engine for Linux](https://docs.docker.com/engine/install/)
+2. Install Docker Compose:
+   - Docker Desktop includes Docker Compose by default
+   - For Linux: [Install Docker Compose](https://docs.docker.com/compose/install/)

152-199: Add security considerations section

The Docker setup should include security best practices to ensure secure deployment.

Add a security considerations section:

### Security Considerations

1. Never store sensitive environment variables in Dockerfile
2. Use multi-stage builds to reduce the final image size
3. Run the container as a non-root user
4. Regularly update base images to get security patches
5. Scan Docker images for vulnerabilities before deployment
🧰 Tools
🪛 Markdownlint

170-170: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


178-178: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between ef08944 and b09c696.

📒 Files selected for processing (1)
  • INSTALLATION.md (2 hunks)
🧰 Additional context used
🪛 Markdownlint
INSTALLATION.md

170-170: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)


178-178: null
Fenced code blocks should have a language specified

(MD040, fenced-code-language)

🔇 Additional comments (1)
INSTALLATION.md (1)

16-19: LGTM: Table of Contents updated correctly

The TOC has been properly updated to include the new Docker installation sections.

INSTALLATION.md Show resolved Hide resolved
INSTALLATION.md Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ignore-sensitive-files-pr The contributor has a legitimate reason for editiing protected files
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants