To install the project
git clone https://github.com/ulaval-rs/peatland-dashboard.git
cd peatland-dashboard
./venv/bin/pip install .To run the app
./venv/bin/streamlit run app.pyFollow these steps to contribute to the project
First, clone the repo (you may need to fork the project before if you are not a collaborator in the Github project)
git clone https://github.com/ulaval-rs/peatland-dashboardEnter the project directory
cd peatland-dashboardMake a new branch where you will make the changes
git checkout -b your-branch-nameNow you can make your changes. Once it's done, you can add your changes and commit them.
git add .
git commit -m "your message"And push the changes.
git push origin your-branch-nameFinally, through the pull requests interface (https://github.com/ulaval-rs/peatland-dashboard/pulls),
you can make a new pull request from your branch to the main branch.