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

Build workspace from scratch with no ready-made-envs #127

Merged
merged 3 commits into from
Sep 30, 2023

Conversation

shaal
Copy link
Owner

@shaal shaal commented Sep 30, 2023

Summary by CodeRabbit

Release Notes for the Pull Request:

  • New Feature: Upgraded Drupal version from 9 to 10 and MariaDB from 10.3 to 10.4 in .ddev/config.yaml.
  • Refactor: Replaced prepare-environments-gcs.sh with set-base-environment.sh in .gitpod.yml.
  • Documentation: Updated instructions for setting up and testing ready-made environments in .gitpod/README.md.
  • Refactor: Enhanced the Drupal setup script .gitpod/drupal/drupalpod-setup.sh for better performance and maintainability.
  • Style: Simplified the command used to install dependencies in .gitpod/drupal/install-essential-packages.sh.
  • New Feature: Added a new Bash script .gitpod/utils/set-base-environment.sh that clones the Drupal core repository and measures execution time.

@shaal shaal self-assigned this Sep 30, 2023
@codesandbox
Copy link

codesandbox bot commented Sep 30, 2023

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 30, 2023

Walkthrough

This update focuses on enhancing the Drupal development environment setup. It includes changes to project configurations, scripts for setting up Drupal and installing essential packages, and updates to README instructions. The modifications aim to streamline the process, improve performance, and ensure compatibility with the latest versions of Drupal and MariaDB.

Changes

File Summary
.ddev/config.yaml Updated project name and versions of Drupal and MariaDB.
.gitpod.yml Replaced prepare-environments-gcs.sh script with set-base-environment.sh. Added a temporary fix for GITPOD_REPO_ROOT.
.gitpod/README.md Revised setup and testing instructions for ready-made environments.
.gitpod/drupal/... Enhanced scripts for Drupal setup and package installation. Improved code organization and efficiency.
.gitpod/utils/set-base-environment.sh Added a new script for cloning the Drupal core repository and loading environment variables.

🐇💻

CodeRabbit hopped through the lines,

Making changes, refining designs.

With each commit, the project grows,

As swiftly as the river flows.

Updates here, improvements there,

Enhancing software with great care.

Celebrate this work so fine,

In the world of code divine. 🎉🥕


Tips

Chat with CodeRabbit Bot (@coderabbitai)

  • Mention @coderabbitai in any review comment for bot assistance.
  • Note: Review comments are made on code diffs or files, not on the PR overview.

Pause Incremental Reviews

  • Insert @coderabbitai: ignore in the PR description to halt the bot's ongoing reviews. Remove the line to resume.
  • Additionally, enter @coderabbitai pause to halt the bot's ongoing reviews as any issue or review comment. To
    resume reviews, enter @coderabbitai resume as any issue or review comment.

@ghost
Copy link

ghost commented Sep 30, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

Copy link
Contributor

@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.

Review Status

Actionable comments generated: 6

Commits Files that changed from the base of the PR and between 7bbb318 and 187f90f.
Files selected for processing (6)
  • .ddev/config.yaml (2 hunks)
  • .gitpod.yml (1 hunks)
  • .gitpod/README.md (1 hunks)
  • .gitpod/drupal/drupalpod-setup.sh (10 hunks)
  • .gitpod/drupal/install-essential-packages.sh (1 hunks)
  • .gitpod/utils/set-base-environment.sh (1 hunks)
Files skipped from review due to trivial changes (4)
  • .ddev/config.yaml
  • .gitpod.yml
  • .gitpod/README.md
  • .gitpod/drupal/install-essential-packages.sh
Additional comments (Suppressed): 1
.gitpod/drupal/drupalpod-setup.sh (1)
  • 36-45: The comment on line 38 indicates that admin_toolbar is not compatible with Drupal 10, but the code to unset DP_EXTRA_ADMIN_TOOLBAR has been commented out. If this is intentional, consider updating or removing the comment to avoid confusion.

Comment on lines +1 to +11
#!/usr/bin/env bash
if [ -n "$DEBUG_SCRIPT" ]; then
set -x
fi

# Load default envs
export "$(grep -v '^#' "$GITPOD_REPO_ROOT"/.env | xargs -d '\n')"

# Clone Drupal core repo
mkdir -p "${GITPOD_REPO_ROOT}"/repos
cd "${GITPOD_REPO_ROOT}"/repos && time git clone https://git.drupalcode.org/project/drupal.git
Copy link
Contributor

Choose a reason for hiding this comment

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

The script seems to be well-written and follows good practices. However, there is no error handling in case the environment variables file is not found or if the git clone operation fails. Adding some error handling would make the script more robust.

# Load default envs
if [ -f "$GITPOD_REPO_ROOT"/.env ]; then
    export "$(grep -v '^#' "$GITPOD_REPO_ROOT"/.env | xargs -d '\n')"
else
    echo "Environment file not found"
    exit 1
fi

# Clone Drupal core repo
mkdir -p "${GITPOD_REPO_ROOT}"/repos
cd "${GITPOD_REPO_ROOT}"/repos && time git clone https://git.drupalcode.org/project/drupal.git || { echo "Git clone failed"; exit 1; }

Comment on lines +7 to +9
# Run 'ddev start' in the background and capture its PID
ddev start &
ddev_start=$!
Copy link
Contributor

Choose a reason for hiding this comment

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

The script starts a ddev process in the background and captures its PID. However, there is no error handling if the ddev start command fails to execute properly. Consider adding error handling to ensure that the script doesn't continue executing if ddev start fails.

ddev start &
+ if [ $? -ne 0 ]; then
+     echo "Failed to start ddev"
+     exit 1
+ fi
ddev_start=$!

Comment on lines 51 to 56
if [ -z "$GITPOD_HEADLESS" ]; then
mkdir -p ~/.ssh
host=git.drupal.org
SSHKey=$(ssh-keyscan $host 2> /dev/null)
echo "$SSHKey" >> ~/.ssh/known_hosts
SSHKey=$(ssh-keyscan $host 2>/dev/null)
echo "$SSHKey" >>~/.ssh/known_hosts
fi
Copy link
Contributor

Choose a reason for hiding this comment

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

This block of code adds the host git.drupal.org to the known hosts file for SSH. This could potentially be a security risk if git.drupal.org is compromised. It would be safer to manually verify the host key fingerprint for git.drupal.org and add it directly to the known hosts file.

Comment on lines 63 to +80
# Find if requested core version is dev or stable
d="$DP_CORE_VERSION"
case $d in
*.x)
*.x)
# If dev - use git checkout origin/*
checkout_type=origin
;;
*)
*)
# stable - use git checkout tags/*
checkout_type=tags
;;
esac

# Use origin or tags in git checkout command
cd "${GITPOD_REPO_ROOT}"/repos/drupal && \
git fetch origin && \
git fetch --all --tags && \
git checkout "$checkout_type"/"$DP_CORE_VERSION"
cd "${GITPOD_REPO_ROOT}"/repos/drupal &&
git fetch origin &&
git fetch --all --tags &&
git checkout "$checkout_type"/"$DP_CORE_VERSION"
Copy link
Contributor

Choose a reason for hiding this comment

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

The script checks whether the requested core version is dev or stable and sets the checkout_type accordingly. However, there's no error handling if an invalid value is provided for DP_CORE_VERSION. Consider adding error handling to ensure that the script doesn't continue executing if an invalid DP_CORE_VERSION is provided.

Comment on lines +116 to +120
# Remove site that was installed before (for debugging)
rm -rf "${GITPOD_REPO_ROOT}"/web
rm -rf "${GITPOD_REPO_ROOT}"/vendor
rm -f "${GITPOD_REPO_ROOT}"/composer.json
rm -f "${GITPOD_REPO_ROOT}"/composer.lock
Copy link
Contributor

Choose a reason for hiding this comment

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

These lines remove several directories and files without checking if they exist first. This could lead to errors if the files or directories don't exist. Consider checking if the files or directories exist before trying to remove them.

rm -rf "${GITPOD_REPO_ROOT}"/web
+ if [ -d "${GITPOD_REPO_ROOT}"/web ]; then
+     rm -rf "${GITPOD_REPO_ROOT}"/web
+ fi
rm -rf "${GITPOD_REPO_ROOT}"/vendor
+ if [ -d "${GITPOD_REPO_ROOT}"/vendor ]; then
+     rm -rf "${GITPOD_REPO_ROOT}"/vendor
+ fi
rm -f "${GITPOD_REPO_ROOT}"/composer.json
+ if [ -f "${GITPOD_REPO_ROOT}"/composer.json ]; then
+     rm -f "${GITPOD_REPO_ROOT}"/composer.json
+ fi
rm -f "${GITPOD_REPO_ROOT}"/composer.lock
+ if [ -f "${GITPOD_REPO_ROOT}"/composer.lock ]; then
+     rm -f "${GITPOD_REPO_ROOT}"/composer.lock
+ fi

Comment on lines 213 to 218
# Symlink the simpletest folder into the Drupal core git repo.
# repos/drupal/sites/simpletest -> ../../../web/sites/simpletest
if [ ! -L "$GITPOD_REPO_ROOT"/repos/drupal/sites/simpletest ]; then
cd "$GITPOD_REPO_ROOT"/repos/drupal/sites && \
ln -s ../../../web/sites/simpletest .
fi

# Update composer.lock to allow composer's symlink of repos/drupal/core
if [ "$ready_made_env_exist" ]; then
cd "${GITPOD_REPO_ROOT}" && time ddev composer update
else
"${GITPOD_REPO_ROOT}"/.gitpod/drupal/install-essential-packages.sh
cd "$GITPOD_REPO_ROOT"/repos/drupal/sites &&
ln -s ../../../web/sites/simpletest .
fi
Copy link
Contributor

Choose a reason for hiding this comment

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

The script creates a symbolic link without checking if it already exists. This could lead to errors if the symbolic link already exists. Consider checking if the symbolic link exists before trying to create it.

if [ ! -L "$GITPOD_REPO_ROOT"/repos/drupal/sites/simpletest ]; then
+ if [ ! -e "$GITPOD_REPO_ROOT"/repos/drupal/sites/simpletest ]; then
   cd "$GITPOD_REPO_ROOT"/repos/drupal/sites &&
       ln -s ../../../web/sites/simpletest .
fi

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 30, 2023

Rate Limit Exceeded

You have exceeded the limit for the number of files or commits that can be reviewed per hour. Please wait 15 minutes and 23 seconds before requesting another review.

To re-trigger a review, convert this PR to a draft and then mark it as ready for review again. Alternatively, you can push a new commit to this PR.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 30, 2023

Rate Limit Exceeded

You have exceeded the limit for the number of files or commits that can be reviewed per hour. Please wait 14 minutes and 8 seconds before requesting another review.

To re-trigger a review, convert this PR to a draft and then mark it as ready for review again. Alternatively, you can push a new commit to this PR.

@shaal shaal merged commit 1400d9f into main Sep 30, 2023
@shaal shaal deleted the install-from-scratch branch September 30, 2023 20:53
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