Code Red

Let's join in together and break the myths and taboos about menstruation

Open Source Love PRs Welcome contributions welcome  first-timers-only helping-hand

💻Tech Stack

HTML CSS JS

✨Features:

  1. Menstrual cycle tracker
  2. Diet myths, facts and food to be eaten.
  3. Precautions and Remedies to be used.
  4. Chat forum to contact medical advisor
  5. Awareness on topics such as breast cancer, cervical cancer and idealogies.
  6. Provides medical reminder.

➡️Further Future Updates:

  1. Adding a separate space for small businesses.
  2. Direct contact with a gynecologist to provide medical help.
  3. Portal to sell/buy the necessities.

Prerequisites:

  • Install git in your machine.

  • Have basic command line experiance.

  • have basic knowledge of html , css and JS .

Follow the given steps

  1. Fork this repository

    Click the button on top right corner labelled fork.

  2. Clone this repository using the link into your local machine.

    On the forked repo click the green button labelled code and copy the https url.

    Once it is copied open the terminal/cmd and type in the following code

    
     git clone "http url you just copied"
    
    
  3. Going to the required project directory

    
     cd HacktoberFest-Projects-2021
    
    
  4. Create a branch

    The best practise is to create another branch work on it and finally merge it .

    So after changing to project directory ,to creata new branch type in the foll code.

    
     git checkout -b your_new_branch_name
    
    

    for example :

    
    git checkout -b branch-2
    
    
  5. Add the necessary contribution and commit those contributions.

    After making the changes type in the below command this command will let you know which files have been modified.

    
     git clone 
    
    

    Add those changes to the branch you just created using the below command.

    
    git add .
    
    

    Now commit those changes using the below command:

    
    git commiit -m "The changes that you done must be mentioned here"
    
    
  1. Push changes to github

    Push your changes using the below command:

    
    git push origin branch_name
    
    

    replace branch_name with the name of the branch you created earlier.

    For example:

    
    git push origin branch-2
    
    
  2. Submit your changes for review

    If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

    Then if you want to mention anything about the changes type it in and finally submit the pull request.