From eb4640859939a5b9995a3d7957c8cdeac5f931f5 Mon Sep 17 00:00:00 2001
From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
Date: Tue, 8 Apr 2025 18:22:26 +0000
Subject: [PATCH 1/8] - Removed files containing sensitive data using BFG
Repo-Cleaner - Replaced all instances of passwords listed in passwords.txt
throughout the repository's history
---
brew install bfg | 0
...=now --all && git gc --prune=now --aggressive git push --force | 0
.../fix(security): remove sensitive data and replace passwords | 0
.../github.com/your-repo.git cd your-repo.git | 0
4 files changed, 0 insertions(+), 0 deletions(-)
create mode 100644 brew install bfg
create mode 100644 git clone --mirror https:/github.com/bfg --delete-files YOUR-FILE-WITH-SENSITIVE-DATA bfg --replace-text passwords.txt/git reflog expire --expire=now --all && git gc --prune=now --aggressive git push --force
create mode 100644 git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords
create mode 100644 git clone --mirror https:/github.com/your-repo.git cd your-repo.git
diff --git a/brew install bfg b/brew install bfg
new file mode 100644
index 000000000000..e69de29bb2d1
diff --git a/git clone --mirror https:/github.com/bfg --delete-files YOUR-FILE-WITH-SENSITIVE-DATA bfg --replace-text passwords.txt/git reflog expire --expire=now --all && git gc --prune=now --aggressive git push --force b/git clone --mirror https:/github.com/bfg --delete-files YOUR-FILE-WITH-SENSITIVE-DATA bfg --replace-text passwords.txt/git reflog expire --expire=now --all && git gc --prune=now --aggressive git push --force
new file mode 100644
index 000000000000..e69de29bb2d1
diff --git a/git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords b/git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords
new file mode 100644
index 000000000000..e69de29bb2d1
diff --git a/git clone --mirror https:/github.com/your-repo.git cd your-repo.git b/git clone --mirror https:/github.com/your-repo.git cd your-repo.git
new file mode 100644
index 000000000000..e69de29bb2d1
From fb117e7e8582c77a355d9a2bc27b0c32135adb7d Mon Sep 17 00:00:00 2001
From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
Date: Thu, 1 May 2025 14:35:06 -0400
Subject: [PATCH 2/8] Create devcontainer.json
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
---
.devcontainer/devcontainer.json | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 .devcontainer/devcontainer.json
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 000000000000..39bbd2681d70
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,4 @@
+{
+ "image": "mcr.microsoft.com/devcontainers/universal:2",
+ "features": {}
+}
From 6f724eecf2b4fcfcb4665712b4bbfaf246714ae9 Mon Sep 17 00:00:00 2001
From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
Date: Sun, 18 May 2025 12:31:38 -0400
Subject: [PATCH 3/8] Update README.rst
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
---
README.rst | 93 +++++++++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 82 insertions(+), 11 deletions(-)
diff --git a/README.rst b/README.rst
index 773f4b9a3738..3d81387fd213 100644
--- a/README.rst
+++ b/README.rst
@@ -1,30 +1,101 @@
-# Google Cloud Client Library for Python
+# Google Cloud Python Project
-Welcome to the Google Cloud Client Library for Python repository. This library provides a suite of tools to interact with Google Cloud services using Python.
+Welcome to the **Google Cloud Python Project** for Dimvy Clothing Brand!
+
+This repository contains Python code and scripts designed to integrate and automate workflows with Google Cloud services for Dimvy Clothing Brand.
## Table of Contents
- [Overview](#overview)
- [Features](#features)
+- [Getting Started](#getting-started)
+- [Prerequisites](#prerequisites)
- [Installation](#installation)
+- [Configuration](#configuration)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
+- [Contact](#contact)
## Overview
-The Google Cloud Client Library for Python simplifies the process of integrating Google Cloud services into your Python applications. It provides idiomatic, well-structured Python interfaces for various Google Cloud services.
+This project provides utilities and automation scripts for interacting with various Google Cloud Platform (GCP) services. It is designed to help streamline backend, analytics, and management workflows for the Dimvy Clothing Brand.
## Features
-- **Comprehensive**: Access a wide range of Google Cloud services.
-- **Idiomatic**: Designed to be easy to use for Python developers.
-- **Secure**: Built-in support for authentication and authorization.
-- **Well-documented**: Detailed documentation and examples.
+- Google Cloud Storage integration
+- Automated management scripts
+- Secure authentication and configuration
+- Error handling and logging
+- Modular and extensible Python codebase
+
+## Getting Started
+
+Follow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.
+
+### Prerequisites
+
+- Python 3.8 or higher
+- Google Cloud account & project
+- `pip` package manager
+
+### Installation
+
+1. **Clone the repository:**
+ ```bash
+ git clone https://github.com/Dimvy-Clothing-brand/google-cloud-python-nodoubtz-.git
+ cd google-cloud-python-nodoubtz-
+ ```
+
+2. **Create and activate a virtual environment (recommended):**
+ ```bash
+ python3 -m venv venv
+ source venv/bin/activate
+ ```
+
+3. **Install dependencies:**
+ ```bash
+ pip install -r requirements.txt
+ ```
+
+### Configuration
+
+1. **Set up Google Cloud credentials:**
+ - Create a service account in your GCP project.
+ - Download the JSON key file.
+ - Set the environment variable:
+ ```bash
+ export GOOGLE_APPLICATION_CREDENTIALS="/path/to/your/service-account-file.json"
+ ```
+
+2. **Edit the `config.py` or `.env` file** (if available) to match your environment and project settings.
+
+## Usage
+
+- Run scripts as needed. For example:
+ ```bash
+ python main.py
+ ```
+
+- Explore the `/scripts` directory for utility scripts.
+
+- Review code comments and docstrings for more details on usage.
+
+## Contributing
+
+We welcome contributions! Please open issues for bugs or feature requests, and submit pull requests for improvements.
+
+## License
+
+This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.
+
+## Contact
+
+- **Project Maintainer:** [nodoubtz](https://github.com/nodoubtz)
+- **Organization:** Dimvy Clothing Brand
-## Installation
+For questions or support, open an issue in this repository.
-To install the library, use pip:
+---
-```bash
-pip install google-cloud
+*Hide sensitive credentials and never commit secret keys to the repository. Secure your deployment with proper IAM roles and permissions.*
From 24b1d5a98d628ed53687ed209957b65777a4ea49 Mon Sep 17 00:00:00 2001
From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
Date: Sun, 18 May 2025 12:44:44 -0400
Subject: [PATCH 4/8] Create index.html
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
---
index.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 77 insertions(+)
create mode 100644 index.html
diff --git a/index.html b/index.html
new file mode 100644
index 000000000000..8e6930c9effc
--- /dev/null
+++ b/index.html
@@ -0,0 +1,77 @@
+
+
+
+
+
+ Dimvy Clothing Brand - Google Cloud Python
+
+
+
+
+
+
+
+ Welcome!
+
+ This is the homepage for the Google Cloud Python project of Dimvy Clothing Brand.
+
+ About This Project
+
+ - Showcase of integrating Python with Google Cloud
+ - Secure and efficient management of cloud resources
+ - Modern web design, fast and responsive
+
+ View on GitHub
+
+
+
+
From 9f240486cd9c8795a68ea0ea9678c00f777ddfd3 Mon Sep 17 00:00:00 2001
From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
Date: Sun, 18 May 2025 12:47:00 -0400
Subject: [PATCH 5/8] Update index.html
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
From 8cd37cc75a31c8c0f8768c6f41ce8a5c22de9edf Mon Sep 17 00:00:00 2001
From: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
Date: Sun, 18 May 2025 12:48:27 -0400
Subject: [PATCH 6/8] Add files via upload
Signed-off-by: Nodoubtz <53144580+nodoubtz@users.noreply.github.com>
---
...workflows_ubuntu-latest-m-nodoubtz.yml.txt | 33 +++++++++++++++++++
workflow.yml.txt | 8 +++++
2 files changed, 41 insertions(+)
create mode 100644 github_workflows_ubuntu-latest-m-nodoubtz.yml.txt
create mode 100644 workflow.yml.txt
diff --git a/github_workflows_ubuntu-latest-m-nodoubtz.yml.txt b/github_workflows_ubuntu-latest-m-nodoubtz.yml.txt
new file mode 100644
index 000000000000..23657de2977b
--- /dev/null
+++ b/github_workflows_ubuntu-latest-m-nodoubtz.yml.txt
@@ -0,0 +1,33 @@
+name: Ubuntu Latest CI - m-nodoubtz
+
+on:
+ push:
+ branches: [ main ]
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ name: Build and Test on Ubuntu Latest (m-nodoubtz)
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+
+ - name: Set up Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: '3.x'
+
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install -r requirements.txt
+
+ - name: Run tests
+ run: |
+ if [ -f pytest.ini ] || [ -f setup.cfg ] || [ -f tox.ini ]; then
+ pytest
+ else
+ echo "No test config found, skipping tests."
+ fi
\ No newline at end of file
diff --git a/workflow.yml.txt b/workflow.yml.txt
new file mode 100644
index 000000000000..14629c49b1c6
--- /dev/null
+++ b/workflow.yml.txt
@@ -0,0 +1,8 @@
+jobs:
+ example-job:
+ runs-on: windows-latest
+ steps:
+ - name: Check out code
+ uses: actions/checkout@v3
+ - name: Run a command
+ run: echo "Hello from the Windows runner!"
\ No newline at end of file
From 2618a63377b2c42a7e883579624ff5be0d69827f Mon Sep 17 00:00:00 2001
From: Tanker187
Date: Sun, 17 Aug 2025 14:55:29 +0000
Subject: [PATCH 7/8] Add Google Tag Manager script and create
package-lock.json
---
...ecurity): remove sensitive data and replace passwords | 9 +++++++++
package-lock.json | 6 ++++++
2 files changed, 15 insertions(+)
create mode 100644 package-lock.json
diff --git a/git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords b/git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords
index e69de29bb2d1..7b4b55af2c0a 100644
--- a/git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords
+++ b/git clone --mirror https:/github.com/fix(security): remove sensitive data and replace passwords
@@ -0,0 +1,9 @@
+
+
+
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 000000000000..5c818c387a5d
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,6 @@
+{
+ "name": "google-cloud-python-nodoubtz-",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {}
+}
From fcfa187e50d248ed06cfabe7139d559f252c4c7f Mon Sep 17 00:00:00 2001
From: Tanker187
Date: Sun, 17 Aug 2025 15:51:53 +0000
Subject: [PATCH 8/8] Add Google Tag Manager script to index.html
---
index.html | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/index.html b/index.html
index 8e6930c9effc..588ecf683b8f 100644
--- a/index.html
+++ b/index.html
@@ -2,6 +2,13 @@
+
+
+
Dimvy Clothing Brand - Google Cloud Python
@@ -53,6 +60,10 @@
+
+
+