Skip to main content
Version: 3.0.0

Bitbucket

Prerequisites

To complete this guide, ensure you have:

  • A Bitbucket account
  • A terminal with:
    • Git CLI installed (pre-installed on macOS and Linux, or use brew install git with Homebrew)
    • jq installed (brew install jq with Homebrew)

Set up variables

Define your Bitbucket workspace and repository:

tip

Find your workspace slug in the Bitbucket URL: https://bitbucket.org/<workspace>/. It's usually your username or organization name.

BITBUCKET_WORKSPACE=""
BITBUCKET_REPOSITORY="ascend-community"

Select your Ascend data plane:

DATA_PLANE="bigquery"
tip

Otto's Expeditions supports multiple data planes. You can explore the demo using separate projects for each or a single project with multiple data planes. This guide focuses on a single data plane setup.

Copy Ascend Community code to your repository

Clone the public ascend-io/ascend-community GitHub repository:

git clone https://github.com/ascend-io/ascend-community.git $BITBUCKET_REPOSITORY

Navigate to the repository directory:

cd $BITBUCKET_REPOSITORY

Remove the existing .git directory:

rm -rf .git

Initialize a new Git repository:

git init

Create a commit:

git checkout -b main
git add .
git commit -m "copy code from ascend-io/ascend-community"

Create a new private repository in Bitbucket:

  1. Go to Bitbucket, click Create, and select Repository.
  2. Set the repository name to ascend-community (to match $BITBUCKET_REPOSITORY).
  3. Select No for both Include a README? and Include .gitignore, as these will be added later.
  4. Ensure Private repository is selected. Use main for the default branch.
  5. Click Create repository.

Set up variables

Set the project root:

PROJECT_ROOT="ottos-expeditions/projects/$DATA_PLANE"

Enable SSH access to the Bitbucket repository

Ascend requires a private SSH key for Bitbucket repository access. Add the corresponding public SSH key as an access key in Bitbucket.

Set up variables

Choose a name for the SSH key:

SSH_KEY_NAME="ascend_ottos_expeditions"

Create a new SSH key on your local machine

Generate a new SSH key:

ssh-keygen -t ed25519 -N "" -f ~/.ssh/$SSH_KEY_NAME

Add the SSH public key as an access key to the repository

warning

This section uses the pbcopy command, which is specific to macOS. If you're using a different OS, please use the appropriate command for your system to copy text to the clipboard.

  1. In Bitbucket, click the settings icon toward the top right > Personal Bitbucket settings.
  2. Navigate to SSH keys and click Add key.
  3. Copy your public key and paste it into the SSH public key field:
cat ~/.ssh/$SSH_KEY_NAME.pub | pbcopy
  • Name: "Ascend Otto's Expeditions"
  • Optionally, add an expiration date for security. SSH key settings Click Add key. SSH key successfully added in Bitbucket
tip

Add the SSH key in your overall Bitbucket settings, not at the individual repository level.

Add the remote and push the code

Run these commands:

git remote add origin git@bitbucket.org:$BITBUCKET_WORKSPACE/$BITBUCKET_REPOSITORY.git
git push -u origin main
tip

If you encounter this SSH authentication error:

git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.

Update your SSH configuration file by following the Bitbucket host setup instructions in the Config section of this article.

If prompted for authentication, enter your Bitbucket username (found in Personal Bitbucket settings) and password. If you don't have a password, create a Bitbucket app password to use instead.

Create the Ascend repository

In the Ascend UI, navigate to Settings > Repositories and click Add Repository.

warning

This section uses | pbcopy to copy output to the clipboard on macOS. Adjust the command for other operating systems.

Copy the repository URI

Copy the repository URI:

echo "git@bitbucket.org:$BITBUCKET_WORKSPACE/$BITBUCKET_REPOSITORY.git" | pbcopy

Paste it into the Repository URI field in the Ascend UI.

Copy the SSH private key to clipboard

Copy the SSH private key:

cat ~/.ssh/$SSH_KEY_NAME | pbcopy

Paste it into the SSH Private Key field in the Ascend UI.

warning

If you're manually copying the SSH private key, ensure you copy the entire key of the form:

-----BEGIN OPENSSH PRIVATE KEY-----
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
-----END OPENSSH PRIVATE KEY-----

Including the -----BEGIN OPENSSH PRIVATE KEY----- and -----END OPENSSH PRIVATE KEY----- lines.

Click Check and Create.

Create the Ascend project

In the Ascend UI, navigate to Settings > Projects and click Add Project.

Set the Title to "Otto's Expeditions" or your preferred name. For the Repository field, select the repository you added.

Copy the Project Root to your clipboard:

echo "$PROJECT_ROOT" | pbcopy

Paste it into the Project Root field in the Ascend UI. Click Save.

Click Save.

Next steps

🎉 Congratulations, you're ready to create an Ascend Workspace and start using Otto's Expeditions!