Skip to content

Commit

Permalink
maybe fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
matsonj committed Apr 21, 2024
1 parent dd1f3fc commit 49519a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Expand Up @@ -48,10 +48,10 @@
// "forwardPorts": [],

// Uncomment the next line to run commands after the container is created - for example installing curl.
"postCreateCommand": "make build",
"postCreateCommand": "make build"

// Uncomment when using a ptrace-based debugger like C++, Go, and Rust
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],

"remoteUser": "root"
// "remoteUser": "root"
}
13 changes: 6 additions & 7 deletions Makefile
@@ -1,16 +1,15 @@
build:
pip install uv
uv pip install --system -r requirements.txt
cd transform && dbt deps
install-uv:
sudo pip install uv
sudo uv pip install --system -r requirements.txt

build: install-uv
cd transform && sudo dbt deps
cd evidence && npm install
mkdir -p data/data_catalog/raw
mkdir -p data/data_catalog/prep
mkdir -p data/data_catalog/simulator
mkdir -p data/data_catalog/analysis

activate:
source .venv/bin/activate

run:
cd dlt && python3 nba_pipeline.py
cd transform && dbt build
Expand Down

0 comments on commit 49519a7

Please sign in to comment.