biplobgon/product-recommendation-system
0
1# ============================================================2# Google Cloud Storage configuration3# ============================================================4# Copy this file to .env and fill in your values.5# The .env file is listed in .gitignore and will NOT be committed.6 7# Name of the GCS bucket that holds the raw dataset files.8GCS_BUCKET_NAME=product-recommender-systems9 10# (Optional) GCP project ID.11# When omitted the project is inferred from Application Default Credentials.12# GCS_PROJECT_ID=my-gcp-project13 14# (Optional) Absolute path to a service-account JSON key file.15# When omitted the client falls back to Application Default Credentials16# (e.g. gcloud auth application-default login, Workload Identity, etc.).17# GCS_CREDENTIALS=/path/to/service-account-key.json18 19# (Optional) Local directory where raw data files are stored.20# Defaults to data/raw relative to the project root.21# DATA_RAW_DIR=data/raw22 