-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (26 loc) · 1.26 KB
/
Copy pathMakefile
File metadata and controls
38 lines (26 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
minio-run:
minio server /Users/baptistedarnala/Documents/Database/minio/ --license ~/Documents/Database/minio/minio.license
dagster-run:
uv run dg dev
dbt-run:
dbt run --project-dir data-eng/dbt_data_pipeline --profiles-dir data-eng/dbt_data_pipeline
dbt-test:
dbt test --project-dir data-eng/dbt_data_pipeline --profiles-dir data-eng/dbt_data_pipeline
dbt-build:
dbt build --project-dir data-eng/dbt_data_pipeline --profiles-dir data-eng/dbt_data_pipeline
duckui:
duckdb -ui warehouse/sncf_data_analysis.duckdb
data-pipeline:
sh scripts/data-pipeline.sh
create-sncf-bucket:
gcloud storage buckets create gs://sncf-bucket --default-storage-class=STANDARD --location=EUROPE-WEST9 --enable-hierarchical-namespace --uniform-bucket-level-access --public-access-prevention
docker-build-local:
direnv exec / docker compose --env-file .env.docker build --no-cache
docker-up-local:
direnv exec / docker compose --env-file .env.docker up
docker-build:
docker compose --env-file .env build --no-cache --progress=plain
docker-up:
docker compose --env-file .env up
dagster-postgres:
docker run --name dagster-postgres -p 5432:5432 -e POSTGRES_USER=${DAGSTER_POSTGRES_USER} -e POSTGRES_PASSWORD=${DAGSTER_POSTGRES_PASSWORD} -e POSTGRES_DB=${DAGSTER_POSTGRES_DB} -d postgres