Giter Site home page Giter Site logo

c4gt's Introduction

Code for GovTech

Code for GovTech (C4GT) Open Source Program



πŸ“Œ β€œWe believe open source is a public good and across every industry, we have a responsibility to come together to improve and support the security of open-source software we all depend on.”.😍😍 Code for GovTech (C4GT).

C4GT has been conceptualised as a summer coding program to create a community that can build and contribute to global digital public goods.

πŸ“Œ An opportunity for 3rd/4th year engineering students from Tier 1/2 campuses in India to experience the GovTech space.

πŸ“Œ Organized annually over 3 months (mid May-mid Aug), anchored by Samagra with support from partners.

πŸ“Œ There will be a set of GovTech problem statements every year for the participants to work on.

πŸ“Œ Shortlisted participants will receive mentorship of leading practitioners in GovTech over 3 months.

This repository is created to hold every documentation generated during C4GT.This website is built using Docusaurus 2, a modern static website generator.You Can ( Visit πŸš€ )

If you have any queries or any suggestions then reach out to us at Mail.

In order to make a hassle-free environment, I implore you all (while contributing) to follow the instructions mentioned below! Happy Submissions πŸ™‚


Projects

BUILDING AN OPENSOURCE GOVERNMENT OPERATING SYSTEM

Project Name Description Mentors Assigned
UCI Web Channel UCI is an open source platform that enables exactly this - a configurable platform to enable personalised chatbot communication across channels such as WhatsApp, Telegram, SMS, email and more. With UCI you can plugin any federated set of users, any micro experience generating transformers and any distribution channel adapters. Shruti&Chakshu
Admin for Sunbird RC Sunbird RC is an open-source software framework for rapidly building electronic registries, enable attestation capabilities, and build verifiable credentialing with minimal effort. X-Admin is an open-source, low-code framework to create internal admin tools for governance use cases. Shruti&Chakshu
UCI Signal Integration UCI is an open source platform that enables exactly this - a configurable platform to enable personalised chatbot communication across channels such as WhatsApp, Telegram, SMS, email and more. With UCI you can plugin any federated set of users, any micro experience generating transformers and any distribution channel adapters. Shruti&Chakshu
Centralised Access Control OAuth2 Proxy is a reverse proxy and static file server that provides authentication using Providers (Google, GitHub, and others) to validate accounts by email, domain or group. This enables the creation of stateless microservices that can be verified through a network layer. The goal is to add FusionAuth as a provider that will enable all GovTech products to not include authentication-related code inside microservices, enabling the creation and management of ACL outside of a microservice in a reusable way. Chakshu
Competency Passbook A competency ledger on a private blockchain network of schools for awarding badges and certificates to students can remain decentralised in the private blockchain network of schools and will always be one source of truth for authenticity. Bharat
Low-code Admin Console X-Admin an open-source framework to create internal admin tools for governance use cases. Bharat
Workflow Management The aim of this project is to enable GovTech workflows such as If This Then That (IFTTT), Escalations and Alerts to be configured in a reusable manner and run through a combination of open source products - n8n (workflow builder) and temporal (runner). Ashish
Machine Learning Platform While there is a lot of data, it’s not easy to find people who can use that to good effect. The aim of this project is to build a platform that can be used by anyone to train models from these datasets, experiment between different models, deploy the better performing one and monitor the performance in production. Ashish
URL Shortener (YAUS) YAUS is an open-source service for generating shortened URLs. BACHI
Doc Generator Doc generator is a plugin-based service that will help in generating reports, docs, pdfs, from various data sources and in any required format and layout. The Design Doc can be found here. BACHI
Shiksha Postgres Adapter This project aims to create a reference adapter which can interact with a Postgres database. This can be given as a reference implementation to deployers who may not have an existing backend.The project will involve creating a new adapter in Shiksha that uses Postgres as a backend. The schemas in Postgres can mimic the schemas from the Shiksha specification to make the implementation of the adapter simple. Ashwin
Shiksha CMS and Announcements Module As Shiksha starts getting deployed, apart from the core functionalities like worksheets and attendance, there would be non-functional requirements like creating landing pages, welcome screens and content pages. Content pages would be useful to show information about the sponsoring ministry / authority, help and FAQ pages. Deployers will need to be able to create such content pages and also announcements (eg show announcements about events or updates).The project will allow 2 areas:Manage announcements and Manage content pages Ashwin&Arun
Shiksha Frontend Restructuring The aim of Shiksha is to make highly configurable modules which can be embed and extend easily by developers in any of their application and used standalone by providing data points to it. Ashwin&Arun
Shiksha Design System The aim of Shiksha is to make highly configurable modules which can be embed and extend easily by developers in any of their application and used standalone by providing data points to it. Ashwin&Arun
Sunbird QUML Player Sunbird inQuiry Sunbird inQuiry is a building block, open sourced under MIT license, that enables setting up of question banks that can contain questions and question sets for various use cases such as practice, assessment, quiz, worksheet and many more. Kartheek Palla

πŸ‘¨β€πŸ’» Tech Stack:

RUBY SAAS Markdown Bootstrap MySQL Bootstrap React Python JavaScript Angular.js NodeJS TypeScript AmazonDynamoDB MongoDB SQLite TensorFlow Git



πŸ“Œ Contributing Guidelines

Basics of Git and GitHub

Git & GitHub

Before we proceed, it's better to know the difference between Git and Github. Git is a version control system (VCS) that allows us to keep track of the history of our source code , whereas GitHub is a service that hosts Git projects.

We assume you have created an account on Github and installed Git on your System.

Now enter your name and E-mail (used on Github) address in Git, by using following command.

$ git config --global user.name "YOUR NAME"
$ git config --global user.email "YOUR EMAIL ADDRESS"

This is an important step to mark your commits to your name and email.


Fork a project

You can make a copy of the project to your account. This process is called forking a project to your Github account. On Upper right side of project page on Github, you can see -

Click on fork to create a copy of project to your account. This creates a separate copy for you to work on.

Clone the forked project

You have forked the project you want to contribute to your github account. To get this project on your development machine we use clone command of git.

$ git clone https://github.com/Code4GovTech/C4GT.git

Now you have the project on your local machine.


Add a remote (upstream) to original project repository

Remote means the remote location of project on Github. By cloning, we have a remote called origin which points to your forked repository. Now we will add a remote to the original repository from where we had forked.

$ cd <your-forked-project-folder>
$ git remote add upstream https://github.com/Code4GovTech/C4GT

You will see the benefits of adding remote later.


Synchronizing your fork

Open Source projects have a number of contributors who can push code anytime. So it is necessary to make your forked copy equal with the original repository. The remote added above called Upstream helps in this.

$ git checkout main
$ git fetch upstream
$ git merge upstream/main
$ git push origin main

The last command pushes the latest code to your forked repository on Github. The origin is the remote pointing to your forked repository on github.


Create a new branch for a feature or bugfix

Usually, all repositories have a main branch that is regarded to be stable, and any new features should be developed on a separate branch before being merged into the main branch. As a result, we should establish a new branch for our feature or bugfix and go to work on the issue.

$ git checkout -b <feature-branch>

This will create a new branch out of master branch. Now start working on the problem and commit your changes.

$ git add --all
$ git commit -m "<commit message>"

The first command adds all the files or you can add specific files by removing -a and adding the file names. The second command gives a message to your changes so you can know in future what changes this commit makes. If you are solving an issue on original repository, you should add the issue number like #35 to your commit message. This will show the reference to commits in the issue.


Push code and create a pull request

You now have a new branch containing the modifications you want in the project you forked. Now, push your new branch to your remote github fork.

$ git push origin <feature-branch>

Now you are ready to help the project by opening a pull request means you now tell the project managers to add the feature or bug fix to original repository. You can open a pull request by clicking on green icon -

Remember your upstream base branch should be main and source should be your feature branch. Click on create pull request and add a name to your pull request. You can also describe your feature.

Congratulations! You've already made your first contribution.πŸ₯³

Good Luck for your journey

Join the Community ⚑

YouTube LinkedIn Gmail  Discord Instagram

forthebadge

LOC Stars Badge Forks Badge GitHub contributors

GitHub license

Β© 2022 Code for GovTech (C4GT) and contributors

This project is licensed under the MIT license.

forthebadge

c4gt's People

Contributors

abansal15 avatar ajen07 avatar amansgith avatar amit-s19 avatar animeshz avatar arnav-1211 avatar bhavyaberlia avatar biswapremsahu77 avatar chakshugautam avatar dev-ks-155 avatar dipandhali2021 avatar dishant-garg avatar gyanendu01 avatar himanshukabra22 avatar joyee2004 avatar keenwarrior avatar manasvie avatar mayankkumar6017 avatar prtkjakhar avatar saumyasamagra avatar shailiza-mayal avatar shantam60 avatar shruti3004 avatar swaindhruti avatar vanshikabhatotia avatar varshith257 avatar vedantkhairnar avatar vulture278 avatar y3abhishek avatar zeel991 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

c4gt's Issues

[C4GT] Design and develop login and signup

Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish. You can skip any of Goals, Expected Outcome, Implementation Details, Mockups / Wireframes if they are irrelevant. Please note that this section of the ticket is suggestive & you can structure it as per your prerogative.]

Goals

  • Design and develop Signup and login UI and API integration

Expected Outcome

UI development and API integration

Acceptance Criteria

  • User should be able to see signup option
  • User should be able signup by filling all mandatory fields.
  • After successful of signup user can login with the same credentials

Implementation Details

Mockups / Wireframes


[Please note that the below section of the ticket has to be in the format as mentioned as it is key to enabling proper listing of the project. Please only choose the options mentioned under the headings wherever applicable.]

Product Name

Unnati

Project Name

Unnati PWA

Organization Name:

Shiskhalokam

Domain

Education

Tech Skills Needed:

HTML, CSS, javascript, Angular and Ionic

Mentor(s)

@vishwanath1004

Complexity

Medium

Category

UI/UX/Design and Integrations

Sub Category

C4GT Community: Basic Details of Aman Raj

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of TANMAY KUMAR SWAIN

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Abhishek Yadav

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
     <table>
       <tr>
         <td>Name</td>
         <td>Your Name</td>
       </tr>
       <tr>
         <td>GitHub</td>
         <td>https://github.com/your-username</td>
       </tr>
       <tr>
         <td>LinkedIn</td>
         <td>https://www.linkedin.com/in/your-linkedin</td>
       </tr>
       <tr>
         <td>College</td>
         <td>Your College/University</td>
       </tr>
     </table>
  1. Save Changes:
    - Save the changes to the Community.md file.
  2. Commit Changes:
    - In the terminal, run the following commands to commit the changes:
    bash git add Community.md git commit -m "Update my details in Community.md"
  3. Push Changes to Your Fork:
    - Push the changes to your GitHub fork:
    bash git push origin main
  4. Create a Pull Request:
    - Visit your fork on GitHub (https://github.com/your-username/C4GT).
    - Click on the "New pull request" button.
    - Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    - Ensure the head repository is your fork and the compare branch is main.
    - Click "Create pull request" and provide a meaningful title and description.
    - Click "Create pull request" again to submit the pull request.
    Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [Ishit]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT] Design and develop project listing page

Description

  • Show the projects which user is targeted under Assigned to me tab.

Goals

  • Design and develop the project listing page

Expected Outcome

Trained students / contributors.

Acceptance Criteria

  • User able to see the projects

Implementation Details

Design and develop the project listing page as per the UI.

Mockups / Wireframes


Project

Unnati

Organization Name

Shikshalokam

Domain

Education

Tech Skills Needed:

Angular , ionic

Mentor(s)

@vishwanath1004

Complexity

Medium

Category

UI/UX/Design , Feature

Sub Category

Frontend

[C4GT Community]: Basic Details of the contributor

Ticket Contents

Description

Basic Details of the contributor

Goals

Test

Expected Outcome

No response

Acceptance Criteria

No response

Implementation Details

Test

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

C4GT

Domain

Test

Tech Skills Needed

Markdown

Mentor(s)

@shr

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Yash Vikram

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [Your name]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    - Save the changes to the Community.md file.
  6. Commit Changes:
    - In the terminal, run the following commands to commit the changes:
    bash git add Community.md git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    - Push the changes to your GitHub fork:
    bash git push origin main
  8. Create a Pull Request:
    - Visit your fork on GitHub (https://github.com/your-username/C4GT).
    - Click on the "New pull request" button.
    - Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    - Ensure the head repository is your fork and the compare branch is main.
    - Click "Create pull request" and provide a meaningful title and description.
    - Click "Create pull request" again to submit the pull request.
    Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Shreeyans2808

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Kartik Ambekar

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [Your name]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
     <table>
       <tr>
         <td>Name</td>
         <td>Your Name</td>
       </tr>
       <tr>
         <td>GitHub</td>
         <td>https://github.com/your-username</td>
       </tr>
       <tr>
         <td>LinkedIn</td>
         <td>https://www.linkedin.com/in/your-linkedin</td>
       </tr>
       <tr>
         <td>College</td>
         <td>Your College/University</td>
       </tr>
     </table>
  1. Save Changes:
    - Save the changes to the Community.md file.
  2. Commit Changes:
    - In the terminal, run the following commands to commit the changes:
    bash git add Community.md git commit -m "Update my details in Community.md"
  3. Push Changes to Your Fork:
    - Push the changes to your GitHub fork:
    bash git push origin main
  4. Create a Pull Request:
    - Visit your fork on GitHub (https://github.com/your-username/C4GT).
    - Click on the "New pull request" button.
    - Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    - Ensure the head repository is your fork and the compare branch is main.
    - Click "Create pull request" and provide a meaningful title and description.
    - Click "Create pull request" again to submit the pull request.
    Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [Your name]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: test 26|12

Ticket Contents

Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish.]

Goals

Goals

  • [Goal 1]
  • [Goal 2]
  • [Goal 3]
  • [Goal 4]
  • [Goal 5]

Expected Outcome

test 26|12

Acceptance Criteria

No response

Implementation Details

test 26|12

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

Dhiway

Domain

Test

Tech Skills Needed

.NET

Mentor(s)

@Shru

Complexity

Beginner

Category

API

Updatation of Readme file

The current Readme file does not contain details about the program. All details are explained elsewhere. At least there should have been links to other places in the fileΒ 

S REECHA

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

Verified Credentials

Verified Credentials

Intro & Goal

The goal of the Verified Credentials (VC) product is to provide a reliable and efficient system for generating and sharing verified badges and certificates. This system aims to empower users with a tangible and credible representation of their achievements, such as DPG points, and facilitate seamless sharing on various social media and professional platforms.

Who’s it for?

  • Contributors
  • Mentors
  • Program Administrators
  • Organizations

Why build it?

  • Acknowledge and reward contributors for their achievements.
  • Enhance the credibility of program participants (both mentors, contributors and organizations) through verified credentials.
  • Streamline the process of sharing achievements on social media and other professional platforms.

Current form in which it exists

@KDwevedi

New form being envisioned

The new system will automate the issuance of verified badges and credentials, providing contributors with a visually appealing and standardized representation of their achievements.

The new features includes:

  • A user-friendly interface for contributors to access and share their verified credentials.
  • Integration with social media and professional platforms for seamless sharing.
  • APIs to facilitate bulk email communication for mentoring programs, allowing customization through templates and recipient CSV files.

Note: By implementing these changes, the verified credentials product seeks to provide a more efficient, user-centric experience and can be used in various programs and initiatives.

C4GT Community: Basic Details of peeyush mishra

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Dishant

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: Test

Ticket Contents

Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish.]

Goals

Goals

  • [Goal 1]
  • [Goal 2]
  • [Goal 3]
  • [Goal 4]
  • [Goal 5]

Expected Outcome

No response

Acceptance Criteria

No response

Implementation Details

Test

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

SamagraX

Domain

Test

Tech Skills Needed

.NET

Mentor(s)

@sh

Complexity

Low

Category

API

C4GT Community: Basic Details of AJAY BANSAL

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: Add Basic Details to Community

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  1. Clone Your Fork:
  • Open a terminal or command prompt.
  • Run the following command to clone your fork to your local machine:
    bash git clone https://github.com/your-username/C4GT.git
  1. Navigate to the Repository:
  • Change into the repository directory:
    bash cd C4GT
  1. Edit the Community.md File:
  • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
  • Locate the existing table and replace the details with your own:
     <table>
       <tr>
         <td>Name</td>
         <td>Your Name</td>
       </tr>
       <tr>
         <td>GitHub</td>
         <td>https://github.com/your-username</td>
       </tr>
       <tr>
         <td>LinkedIn</td>
         <td>https://www.linkedin.com/in/your-linkedin</td>
       </tr>
       <tr>
         <td>College</td>
         <td>Your College/University</td>
       </tr>
   </table>```
5. **Save Changes:**
 - Save the changes to the `Community.md` file.
6. **Commit Changes:**
 - In the terminal, run the following commands to commit the changes:
 ```bash
   git add Community.md
   git commit -m "Update my details in Community.md"
 ```
7. **Push Changes to Your Fork:**
- Push the changes to your GitHub fork:
 ```bash
    git push origin main
 ```
8. **Create a Pull Request:**
 - Visit your fork on GitHub (https://github.com/your-username/C4GT).
 - Click on the "New pull request" button.
 - Ensure the base repository is `Code4GovTech/C4GT` and the base branch is `main`.
 - Ensure the head repository is your fork and the compare branch is `main`.
 - Click "Create pull request" and provide a meaningful title and description.
 - Click "Create pull request" again to submit the pull request.
Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.


### Product Name

C4GT

### Organisation Name

C4GT

### Tech Skills Needed

Markdown

### Mentor(s)

@Shruti3004


### Complexity

Beginner

### Category

Documentation

[C4GT Community]: Test

Ticket Contents

Test

Goals

Goals

  • [Goal 1]
  • [Goal 2]
  • [Goal 3]
  • [Goal 4]
  • [Goal 5]

Expected Outcome

No response

Acceptance Criteria

No response

Implementation Details

Test

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

SamagraX

Domain

Test

Tech Skills Needed

.NET

Mentor(s)

@Shru

Complexity

Low

Category

API

C4GT Community: Basic Details of Vipul Cariappa

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Shruti

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [Your name]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: Add Basic Details to Community

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  1. Clone Your Fork:
  • Open a terminal or command prompt.
  • Run the following command to clone your fork to your local machine:
    bash git clone https://github.com/your-username/C4GT.git
  1. Navigate to the Repository:
  • Change into the repository directory:
    bash cd C4GT
  1. Edit the Community.md File:
  • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
  • Locate the existing table and replace the details with your own:
     <table>
       <tr>
         <td>Name</td>
         <td>Your Name</td>
       </tr>
       <tr>
         <td>GitHub</td>
         <td>https://github.com/your-username</td>
       </tr>
       <tr>
         <td>LinkedIn</td>
         <td>https://www.linkedin.com/in/your-linkedin</td>
       </tr>
       <tr>
         <td>College</td>
         <td>Your College/University</td>
       </tr>
   </table>
 ```
5. **Save Changes:**
 - Save the changes to the `Community.md` file.
6. **Commit Changes:**
 - In the terminal, run the following commands to commit the changes:
 ```bash
   git add Community.md
   git commit -m "Update my details in Community.md"
 ```
7. **Push Changes to Your Fork:**
- Push the changes to your GitHub fork:
 ```bash
    git push origin main
 ```
8. **Create a Pull Request:**
 - Visit your fork on GitHub (https://github.com/your-username/C4GT).
 - Click on the "New pull request" button.
 - Ensure the base repository is `Code4GovTech/C4GT` and the base branch is `main`.
 - Ensure the head repository is your fork and the compare branch is `main`.
 - Click "Create pull request" and provide a meaningful title and description.
 - Click "Create pull request" again to submit the pull request.
Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.


### Product Name

C4GT

### Organisation Name

C4GT

### Tech Skills Needed

Markdown

### Mentor(s)

@Shruti3004

### Complexity

Beginner

### Category

Documentation

C4GT Community: Basic Details of [Shailiza Mayal]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
     <table>
       <tr>
         <td>Name</td>
         <td>Your Name</td>
       </tr>
       <tr>
         <td>GitHub</td>
         <td>https://github.com/your-username</td>
       </tr>
       <tr>
         <td>LinkedIn</td>
         <td>https://www.linkedin.com/in/your-linkedin</td>
       </tr>
       <tr>
         <td>College</td>
         <td>Your College/University</td>
       </tr>
     </table>
  1. Save Changes:
    - Save the changes to the Community.md file.
  2. Commit Changes:
    - In the terminal, run the following commands to commit the changes:
    bash git add Community.md git commit -m "Update my details in Community.md"
  3. Push Changes to Your Fork:
    - Push the changes to your GitHub fork:
    bash git push origin main
  4. Create a Pull Request:
    - Visit your fork on GitHub (https://github.com/your-username/C4GT).
    - Click on the "New pull request" button.
    - Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    - Ensure the head repository is your fork and the compare branch is main.
    - Click "Create pull request" and provide a meaningful title and description.
    - Click "Create pull request" again to submit the pull request.
    Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: Test

Ticket Contents

Test

Goals

Goals

  • [Goal 1]
  • [Goal 2]
  • [Goal 3]
  • [Goal 4]
  • [Goal 5]

Expected Outcome

No response

Acceptance Criteria

No response

Implementation Details

Test

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

SamagraX

Domain

Test

Tech Skills Needed

.NET

Mentor(s)

@sh

Complexity

Low

Category

API

[C4GT Community]: contributor details addition

Ticket Contents

Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish.]

Goals

Goals

  • [Goal 1]
  • [Goal 2]
  • [Goal 3]
  • [Goal 4]
  • [Goal 5]

Expected Outcome

No response

Acceptance Criteria

No response

Implementation Details

Test

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

C4GT

Domain

Test

Tech Skills Needed

Markdown

Mentor(s)

@sh

Complexity

Beginner

Category

Documentation

C4GT Services

Description

The issue ticket aims to merge all essential tech-related services required for the Code for Govtech Community program and Code for Govtech Mentoring Program. This includes integrating services like email service, PDF generator, issue tracker, leaderboard, admin portal etc. The purpose is to streamline and centralize these services to enhance collaboration, communication, task management, progress tracking, and overall program administration. Merging these services will result in improved efficiency and effectiveness for both programs, ensuring a seamless and integrated experience for contributors, org and engineering team.

Goals

  • Migrating the wix website to the next.js codebase.
    • By creating dedicated application pages on the website, the process of applying for Mentoring Program becomes simpler and more user-friendly and can directly done through the website instead of unstop. [Sample1, Sample2]
    • Relevant Issue Tickets for the above are here.
  • Hosting the different services and create the admin for it.
    • Inauguration with verified credetials
    • Emailing Participation certificates and delivering common information.
    • PDF generation service for the credentials.
    • Discord Bot Services
  • Create a Issue Tracker with proper leaderboard (w.r.t point system) for the Community Program.
  • One interface for Admin Portal for managing all the above platforms.
    • Dashboard for the mentoring program

Mockups / Wireframes

https://www.codeforgovtech.in/
https://app.codeforgovtech.in/
https://verify.codeforgovtech.in/
https://c4gt-ccbp-projects.vercel.app/
https://github.com/apps/c4gt-community-support/installations/new

Tech Skills Needed:

React.js, Next.js, Figma, Nest.js, Typescript

C4GT Community: Basic Details of [Anamika]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of bhavya

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Prateeksha pandey

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: Test

Ticket Contents

Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish.]

Goals

Goals

  • [Goal 1]
  • [Goal 2]
  • [Goal 3]
  • [Goal 4]
  • [Goal 5]

Expected Outcome

No response

Acceptance Criteria

No response

Implementation Details

Test

Mockups/Wireframes

No response

Product Name

C4GT

Organisation Name

SamagraX

Domain

Test

Tech Skills Needed

.NET

Mentor(s)

@sh

Complexity

Low

Category

API

C4GT Community: Basic Details of Shreya Sinha

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Akshit Nandan

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Jatin Rawat

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of araya

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Piyush Bihani

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [vivek]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

[C4GT Community]: Add Basic Details to Community

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  1. Clone Your Fork:
  • Open a terminal or command prompt.
  • Run the following command to clone your fork to your local machine:
    bash git clone https://github.com/your-username/C4GT.git
  1. Navigate to the Repository:
  • Change into the repository directory:
    bash cd C4GT
  1. Edit the Community.md File:
  • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
  • Locate the existing table and replace the details with your own:
     <table>
       <tr>
         <td>Name</td>
         <td>Your Name</td>
       </tr>
       <tr>
         <td>GitHub</td>
         <td>https://github.com/your-username</td>
       </tr>
       <tr>
         <td>LinkedIn</td>
         <td>https://www.linkedin.com/in/your-linkedin</td>
       </tr>
       <tr>
         <td>College</td>
         <td>Your College/University</td>
       </tr>
     </table>
  1. Save Changes:
    - Save the changes to the Community.md file.
  2. Commit Changes:
    - In the terminal, run the following commands to commit the changes:
    bash git add Community.md git commit -m "Update my details in Community.md"
  3. Push Changes to Your Fork:
  • Push the changes to your GitHub fork:
       git push origin main
  1. Create a Pull Request:
    - Visit your fork on GitHub (https://github.com/your-username/C4GT).
    - Click on the "New pull request" button.
    - Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    - Ensure the head repository is your fork and the compare branch is main.
    - Click "Create pull request" and provide a meaningful title and description.
    - Click "Create pull request" again to submit the pull request.
    Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of [Bhanu venkat]

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

C4GT Community: Basic Details of Muskan Nain

Ticket Contents

Description

Please provide the following basic details to help us understand your background and context better.

  • Name:
  • GitHub Username:
  • LinkedIn Profile:
  • College/University:
    If you feel comfortable, you can also provide additional information such as your area of expertise or any specific information you'd like to share.

Goals

  • Adding your basic details

Implementation Details

To implement the changes in the Community.md file on the GitHub repository (https://github.com/Code4GovTech/C4GT/blob/main/Community.md), follow these steps:

  1. Fork the Repository:
  2. Clone Your Fork:
    • Open a terminal or command prompt.
    • Run the following command to clone your fork to your local machine:
         git clone https://github.com/your-username/C4GT.git
  3. Navigate to the Repository:
    • Change into the repository directory:
        cd C4GT
  4. Edit the Community.md File:
    • Open the Community.md file in a text editor. You can use any code editor or a simple text editor.
    • Locate the existing table and replace the details with your own:
        <table>
          <tr>
            <td>Name</td>
            <td>Your Name</td>
          </tr>
          <tr>
            <td>GitHub</td>
            <td>https://github.com/your-username</td>
          </tr>
          <tr>
            <td>LinkedIn</td>
            <td>https://www.linkedin.com/in/your-linkedin</td>
          </tr>
          <tr>
            <td>College</td>
            <td>Your College/University</td>
          </tr>
        </table>
  5. Save Changes:
    • Save the changes to the Community.md file.
  6. Commit Changes:
    • In the terminal, run the following commands to commit the changes:
       git add Community.md
       git commit -m "Update my details in Community.md"
  7. Push Changes to Your Fork:
    • Push the changes to your GitHub fork:
       git push origin main
  8. Create a Pull Request:
    • Visit your fork on GitHub (https://github.com/your-username/C4GT).
    • Click on the "New pull request" button.
    • Ensure the base repository is Code4GovTech/C4GT and the base branch is main.
    • Ensure the head repository is your fork and the compare branch is main.
    • Click "Create pull request" and provide a meaningful title and description.
    • Click "Create pull request" again to submit the pull request.
      Your changes will now be submitted as a pull request to the original repository, and the maintainers can review and merge them.

Product Name

C4GT

Organisation Name

C4GT

Tech Skills Needed

Markdown

Mentor(s)

@Shruti3004

Complexity

Beginner

Category

Documentation

Add Commenting Feature to Blog Posts (Sample Ticket Format for C4GT)

Description

There is a need for a commenting system that will allow users to interact with the blog posts. This will increase user engagement and provide feedback to the blog authors.

Goals

  • Add a comment section to each blog post
  • Implement a moderation system for comments
  • Ensure comments are tied to a registered user
  • Implement spam and bot protection for the comments
  • Add notification system for new comments

Expected Outcome

  • Users must be registered and logged in to leave a comment.
  • Each comment should include the user's name, profile picture (if available), comment text, and timestamp.
  • Comments should be displayed in chronological order, with the most recent comment at the top.
  • An email notification should be sent to the blog post author when a new comment is made.
  • Blog post authors and administrators should be able to moderate comments (approve, deny, delete).

Acceptance Criteria

  • A registered user can submit a comment on a blog post.
  • The comment appears on the blog post after approval from the post author or administrator.
  • An email notification is sent to the blog post author when a new comment is posted.
  • Comments can be moderated by the blog post author and administrators.
  • Commenting system is resistant to spam and bot attacks.

Implementation Details

  • Leverage Django's built-in commenting framework (if applicable)
  • Use JavaScript and AJAX for real-time comment posting and updates
  • Consider integrating with a service like Akismet for spam protection
  • Use Django's built-in email function for the notification system

Mockups / Wireframes

(Here, you can link to any visual aids, mockups, wireframes, or diagrams that help illustrate what the final product should look like. This is not always necessary, but can be very helpful in many cases.)


Project

OpenBlog Platform

Organization Name:

The name of the organization proposing the project.

Domain

The area of governance the project pertains to (ex: agri, healthcare, ed etc).

Tech Skills Needed:

Django, Typescript, NextJS, Akismet

Mentor(s)

@ChakshuGautam @Shruti3004 @sukhpreetssekhon

[C4GT] Button for likes

Description

[Provide a brief description of the feature, including why it is needed and what it will accomplish. You can skip any of Goals, Expected Outcome, Implementation Details, Mockups / Wireframes if they are irrelevant]

Goals

  • [Goal : 1]
  • [Goal : 2]
  • [Goal : 3]
  • [Goal : 4]
  • [Goal : 5]

Expected Outcome

[Describe in detail what the final product or result should look like and how it should behave.]

Acceptance Criteria

  • [Criteria 1]
  • [Criteria 2]
  • [Criteria 3]
  • [Criteria 4]
  • [Criteria 5]

Implementation Details

[List any technical details about the proposed implementation, including any specific technologies that will be used.]

Mockups / Wireframes

[Include links to any visual aids, mockups, wireframes, or diagrams that help illustrate what the final product should look like. This is not always necessary, but can be very helpful in many cases.]


Project

[Project Name]

Organization Name:

[Organization Name]

Domain

[Area of governance]

Tech Skills Needed:

[Required technical skills for the project]

Mentor(s)

[@Mentor1] [@mentor2] [@Mentor3]

Complexity

Pick one of [High]/[Medium]/[Low]

Category

Pick one or more of [CI/CD], [Integrations], [Performance Improvement], [Security], [UI/UX/Design], [Bug], [Feature], [Documentation], [Deployment], [Test], [PoC]

Sub Category

Pick one or more of [API], [Database], [Analytics], [Refactoring], [Data Science], [Machine Learning], [Accessibility], [Internationalization], [Localization], [Frontend], [Backend], [Mobile], [SEO], [Configuration], [Deprecation], [Breaking Change], [Maintenance], [Support], [Question], [Technical Debt], [Beginner friendly], [Research], [Reproducible], [Needs Reproduction].

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.