Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1010 Bytes

Contributions.md

File metadata and controls

39 lines (31 loc) · 1010 Bytes

Contribution

Guidlines on how to contribute to this repo

1. Fork the repo

  • Top right corner of the main page click the fork button to create a copy of the project on your account

2. Clone the repo

Click code button and copy the HTTPS Clone url

Open new folder in desktop

git clone https://github.com/your-username/STEM-eLearning

Replace your-username with your actual github username

Create a branch

git checkout -b my-contribution-branch

Requirements file

Run requirements.txt file to install libraries used in the project

pip install -r requirements.txt

Create a virtual environment

Refer to this documentation file for more details

python -m venv venv

Activate virtual environment

source venv/Scripts/activate

Additional Resources