forked from opensource-observer/oso
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from DataRecce/feature/drc-451-enhancement-ref…
…ine-the-codespace-setting [Enhance] DRC-451 refine the codespace setting
Showing
6 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# How to run OSO (OpenSource Observer) in the GitHub Codespaces | ||
|
||
GitHub Codespaces is a feature that allows you to develop the repository in the cloud. This is a guide on how to run the Open Source Observer repository in GitHub Codespaces directly. | ||
|
||
## Prepare the Data Warehouse of OSO | ||
To run the OSO repository in GitHub Codespaces, you need to prepare the data warehouse of OSO on your own GCP BigQuery. You can also follow the [Get-Stated](https://docs.opensource.observer/docs/get-started/) document on the OSO website to prepare the data warehouse. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#! /bin/bash | ||
|
||
if [ "${CODESPACES}" == "true" ]; then | ||
# Download github actions artifacts | ||
bash .devcontainer/github_codespace_env.sh | ||
|
||
# Check environment variables | ||
bash .devcontainer/setup_required_env.sh | ||
|
||
bash .devcontainer/prepare_dbt_manifest.sh | ||
|
||
bash .devcontainer/launch_recce_server.sh | ||
|
||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters