| 🌟 Stars | 🍴 Forks | 🐛 Issues | 🔔 Open PRs | 🔕 Closed PRs | 🛠️ Languages | 🌐 Contributors |
Check out the FitFlex repository on GitHub
- About FITFLEX
- Tech Stack
- What can you contribute?
- How to contribute?
- How to make a pull request?
- Project Contributors
- License
FitFlex is a fitness and weight loss website that offers daily, structured workout plans for a set period. Users can follow day-wise exercises tailored to their goals, whether it’s for weight loss, muscle gain, or general fitness. FitFlex provides a simple, user-friendly interface to help track progress and stay consistent throughout the fitness journey.
We also have a Discord server to discuss doubts and suggestions! Make sure to join it here:
- Find All the details in CONTRIBUTING.md before contributing
- Please follow guidelines in Code_of_Conduct.md
- Drop a Star in this repo
- Take a look at the existing Issues.
- Fork the Repo create a branch for any issue that you are working on and commit your work.
- At first raise an issue in which you want to work
- Please do not make more than 2 issues at a time , Once your PR have been merged only then go for the next issue
- Then when you are get assigned only then work on that issue & make a PR
- Please try to make a separate branch in your fork in case of PR
- Create a Pull Request, which will be promptly reviewed and given suggestions for improvements by the community.
- REMINDER: Commit inside the
ProjectsFolder - Find the already Existing Projects in the
ProjectsFolder - Add screenshots or video prototypes to your Pull Request to help us understand the effects of the changes that are included in your commits.
- Node.js
- npm
-
Clone the repository:
git clone https://github.com/Open-Code-Crafters/FitFlex.git
-
Navigate to the project directory:
cd FitFlex -
Install Dependencies:
npm install
-
Run the project:
npm run dev
-
Contribution Guidelines Move detailed steps to a new
CONTRIBUTING.mdfile and link to it:
-
Clone the repository:
git clone https://github.com/Open-Code-Crafters/FitFlex.git
-
Navigate to the project directory:
cd FitFlex -
Install Docker Image:
docker build -t my-app . -
Run Docker Image:
docker run -p 5173:5173 my-app
-
Steps to get Docker Desktop for running the application using docker Go to "https://www.docker.com/products/docker-desktop/" and download Docker Desktop for Mac/Windows/Linux
1. Start by forking the FITFLEX repository. Click on the symbol at the top right corner.
2. Clone your forked repository:
git clone https://github.com/<your-github-username>/FitFlex3. Navigate to the new project directory:
cd FitFlex4. Set upstream command:
git remote add upstream https://github.com/Open-Code-Crafters/FitFlex5. Create a new branch:
git checkout -b YourBranchNameor
git branch YourBranchName
git switch YourBranchName6. Sync your fork or local repository with the origin repository:
- In your forked repository click on
Fetch upstream. - Click
Fetch and merge.
git fetch upstreamgit merge upstream/main7. Make your changes to the source code.
8. Stage your changes and commit:
package.json or package-lock.json file
git add . or git add *. Instead, stage your changes for each file/folder
git add file/foldergit commit -m "<your_commit_message>"9. Push your local commits to the remote repository:
git push origin YourBranchName10. Create a Pull Request!
Congratulations! You've made your first contribution! 🙌🏼

