dbx-lakeflow-psp-payment-system
Lakeflow Spark Declarative Pipelines & Claude Code with SDD
File Explorer
- agent-contract.yaml
- incident-ledger.yaml
- psp-payment.contract.yaml
- dqx-rules.yaml
- schema-drift-rescue.json
- part-00000-31bee792-e542-40fb-a474-9d8fa3c3174c-c000.json.gz
- part-00001-31bee792-e542-40fb-a474-9d8fa3c3174c-c000.json.gz
- part-00002-31bee792-e542-40fb-a474-9d8fa3c3174c-c000.json.gz
- part-00003-31bee792-e542-40fb-a474-9d8fa3c3174c-c000.json.gz
- part-00000-fe383905-69e1-45ef-8803-e2e6ed16613f-c000.json.gz
- part-00003-fe383905-69e1-45ef-8803-e2e6ed16613f-c000.json.gz
- part-00000-f35b0ab2-075b-413f-a715-427044eef666-c000.json.gz
- part-00001-f35b0ab2-075b-413f-a715-427044eef666-c000.json.gz
- part-00002-f35b0ab2-075b-413f-a715-427044eef666-c000.json.gz
- part-00003-f35b0ab2-075b-413f-a715-427044eef666-c000.json.gz
- part-00000-fdda941f-7c6b-4019-9d37-5205367f8dc3-c000.json.gz
- part-00001-fdda941f-7c6b-4019-9d37-5205367f8dc3-c000.json.gz
- part-00002-fdda941f-7c6b-4019-9d37-5205367f8dc3-c000.json.gz
- part-00003-fdda941f-7c6b-4019-9d37-5205367f8dc3-c000.json.gz
- part-00000-0c40f021-42d3-4408-88de-656aa1c737d6-c000.json.gz
- part-00001-0c40f021-42d3-4408-88de-656aa1c737d6-c000.json.gz
- part-00002-0c40f021-42d3-4408-88de-656aa1c737d6-c000.json.gz
- part-00003-0c40f021-42d3-4408-88de-656aa1c737d6-c000.json.gz
- manifest.json
- README.md
- local-sdp-2026-08-21.txt
- local-query-replay-2026-08-21.md
- README.md
- README.md
- expected-results.yaml
- instructions.md
- questions.yaml
- space.json
- exa-workshop-readiness.json
- firecrawl-workshop-readiness.json
- tavily-workshop-readiness.json
- workshop-readiness-plan.md
- hosted-2026-08-21.md
- local-2026-08-21.md
- README.md
- expected-evidence.md
- instructor-runbook.md
- progressive-release.md
- README.md
- 01-contract-plan.md
- 02-synthetic-data.md
- 03-bronze.md
- 04-dqx-silver.md
- 05-gold-dabs.md
- 06-genie-delivered.md
- brd-psp.md
- brd-psp.pdf
- cheat-sheet.md
- foundations.md
- how-we-work.md
- lesson-template.md
- README.md
- setup.md
- techs.md
- workshop-guide.md
- psp-payment.md
- README.md
- __init__.py
- cli.py
- generator.py
- release.py
- __init__.py
- pipeline.yml
- schema-volume.yml
- bronze.py
- gold.py
- outputs.py
- silver.py
- spark-pipeline.yaml
- dbx-agentic-development.html
- assert_local_results.py
- bootstrap.sh
- cache_dqx_wheel.sh
- checkpoint.sh
- create_genie_space.sh
- e2e_local.sh
- e2e_remote.sh
- generate_fallback.sh
- install_agent_skills.sh
- java_home.sh
- preflight.sh
- readiness.sh
- release_incident.sh
- render_brd_pdf.py
- reset.sh
- sdp.sh
- test_genie.sh
- upload_fallback.sh
- verify.sh
- verify_checkpoints.sh
- verify_remote_data.sh
- verify_remote_drift.sh
- test_progressive_modules.py
- test_toolchain.py
- test_contracts.py
- test_manifest.py
- test_promises.py
- test_bundle_policy.py
- test_pipeline_contract.py
- test_upload_fallback.py
- test_materials.py
- .gitignore
- AGENTS.md
- CLAUDE.md
- databricks.yml
- pyproject.toml
- README.md
- toolchain.lock.yaml
- uv.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
vim
View Details ▼
vim
Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation.
Pressing `<i>` in normal mode enters insert mode. Pressing `<Esc>` goes back to normal mode, which enables the use of Vim commands.
See also: `vimdiff`, `vimtutor`, `nvim`, `gvim`.
vim {{path/to/file}}
Open a file:
vim +{{line_number}} {{path/to/file}}
Open a file at a specified line number:
<:>help<Enter>
View Vim's help manual:
