From e643c509583a41cfcd5d59a8135264f57e63d7bf Mon Sep 17 00:00:00 2001 From: Taruna Date: Sat, 16 May 2026 17:32:53 +0530 Subject: [PATCH 1/2] Update README with project details and setup instructions Added project overview, setup instructions, contribution guidelines, and repository structure details. --- README.md | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 110 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 04e1239..04af1d2 100644 --- a/README.md +++ b/README.md @@ -1 +1,110 @@ -# C4GT_2026 \ No newline at end of file +# C4GT_2026 + +## Project Overview + +This repository contains project ideas, scaffolding, and contribution workflows related to the Code for Good Tech (C4GT) Dedicated Mentoring Program 2026. + +The repository includes AI, education, accessibility, and public technology focused initiatives aimed at building scalable and impactful open-source solutions. + +--- + +## Getting Started + +### Clone the Repository + +```bash +git clone https://github.com/TarunaJ2006/C4GT_2026.git +``` + +### Navigate to Project Directory + +```bash +cd C4GT_2026 +``` + +--- + +## Python Environment Setup + +Create a virtual environment: + +```bash +python -m venv venv +``` + +Activate the environment: + +### Windows +```bash +venv\Scripts\activate +``` + +### Linux/macOS +```bash +source venv/bin/activate +``` + +--- + +## Install Dependencies + +```bash +pip install -r requirements.txt +``` + +If requirements.txt is not yet available, contributors can install dependencies manually depending on the project module being developed. + +--- + +## Contribution Workflow + +1. Fork the repository +2. Create a new branch +3. Make changes +4. Commit updates with meaningful commit messages +5. Open a Pull Request referencing the related issue + +Example: + +```bash +git checkout -b improve-readme-docs +``` + +--- + +## Repository Structure + +Current repository structure includes: + +- `.github/ISSUE_TEMPLATE` → issue templates for DMP projects +- `README.md` → repository overview and setup guidance + +Future additions may include: +- dataset preprocessing utilities +- model evaluation pipelines +- benchmark notebooks +- fine-tuning scripts +- deployment workflows + +--- + +## Goals + +The broader goal of this repository is to support scalable open-source development under the C4GT 2026 ecosystem while encouraging structured collaboration and reproducible workflows. + +--- + +## Contribution Guidelines + +Contributors are encouraged to: +- maintain clean documentation +- write modular code +- use meaningful commit messages +- test changes before submitting PRs +- discuss major improvements through issues first + +--- + +## License + +This repository follows the licensing and contribution practices defined by the original upstream project. From a5720f66677342ba753a6a248d9d7930c3e37799 Mon Sep 17 00:00:00 2001 From: Taruna Date: Wed, 20 May 2026 16:49:10 +0530 Subject: [PATCH 2/2] Fix clone URL to point to upstream repository --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04af1d2..1da75ae 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The repository includes AI, education, accessibility, and public technology focu ### Clone the Repository ```bash -git clone https://github.com/TarunaJ2006/C4GT_2026.git +git clone https://github.com/theapprenticeproject/C4GT_2026.git ``` ### Navigate to Project Directory