Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Deployment-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ This single line tells the container to perform three separate actions, one afte

To create a database file from a .json file (resulting data from an API query), use the following command:

`podman run --rm -it --name duckdb-importer -v "$(pwd)":/data docker.io/duckdb/duckdb -c "INSTALL json; LOAD json; CREATE OR REPLACE TABLE project_health AS SELECT * FROM read_json_auto('/data/project_health.json');"`
`podman run --rm -it --name duckdb-importer -v "$(pwd)":/data docker.io/duckdb/duckdb duckdb /data/project_health.db -c "INSTALL json; LOAD json; CREATE OR REPLACE TABLE project_health AS SELECT * FROM read_json_auto('/data/project_health.json');"`