- Introduction
- Why?
- Tech Stack
- User Interface
- Process Trial Run
- Setup Guide
- Available Scripts
- Contribution Guidelines
- License
With ReThreads, we have developed a unique platform that operates on two fundamental pillars: donations and innovation
π The journey begins with generous donations from individuals who contribute their old clothing items
π Once these donations are received, our team carefully selects the garments to process
π Our volunteer designers and tailors work closely to redesign and modify the donated clothes, incorporating adaptive features
By repurposing and upcycling these donated garments, we not only make them affordable but also promote sustainability by reducing textile waste. Through our platform, individuals with special needs gain access to a wide range of stylish, adaptive clothing options that are both affordable and environmentally friendly.
The problem we aim to tackle is clear and urgent. Across the world, there is a significant scarcity of cost-effective and adaptive clothing for differently-abled individuals. This scarcity deprives them of the independence, comfort, and self-expression that suitable clothing can provide.
Traditional clothing options often fall short in meeting the specific requirements as they can be expensive and limited in accessibility for those already facing financial challenges. Moreover, the lack of adaptive features can hinder their ability to dress themselves confidently and comfortably.
Learn more about our idea here : https://www.youtube.com/watch?v=kr1XlZzlxlw
Home Page | Categories |
Catalogue | Product Detail |
Cart | About Page |
Learn more about it here - Pitch Deck
Our idea aligns with the following United Nations Sustainable Development Goals:
- Responsible Consumption and Production (Goal 12)
- Climate Action (Goal 13)
To start with setting up the Local Project Environment:
- git clone https://github.com/chinmaychahar/ReThreads.git
- cd ReThreads
- npm install
- npm start
- go to http://localhost:3000/ and get started
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Launches the test runner in the interactive watch mode.
See the section about running tests for more information.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
Kindly follow the below guidelines if you wish to contribute to the project:
- Fork this repository and clone it
git clone https://github.com/chinmaychahar/ReThreads.git
- Add a reference(remote) to the original repository
git remote add upstream https://github.com/chinmaychahar/ReThreads.git
- Check the remotes for this repository
git remote -v
- Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository)
git pull upstream main
- Create a new branch
git checkout -b <your_branch_name>
- Perfom desired changes to the code base and track your changes
git add .
git status
- Commit your changes
git commit -m "Relevant message"
- Push the committed changes in your feature branch to your remote repo
git push -u origin <your_branch_name>
-
To create a pull request, click on
compare and pull requests
-
Add appropriate title and description to your pull request explaining your changes. Click on
Create Pull Request