An open API service indexing awesome lists of open source software.

https://github.com/codeofrahul/ci-mlops

This project is to demonstrate an end to end implementation of Continuous Integration.
https://github.com/codeofrahul/ci-mlops

Last synced: 10 months ago
JSON representation

This project is to demonstrate an end to end implementation of Continuous Integration.

Awesome Lists containing this project

README

          

# CI-MLOPS
This project is to demonstrate an end to end implementation of Continuous Integration.

## **Some useful env commands:**

- To create environment = `conda create -p python=3.8 -y`
- To check available envs = `conda env list`
- To check available envs = `conda info --envs`
- To activate environment = `conda activate `
- To deactivate environment = `conda deactivate`
- To install requirements.txt = `pip install -r requirements.txt`
- To check install packages = `pip list`
- To check detailed about package = `pip show package_name`
- To install package = `pip install package_name`
- To uninstall package = `pip uninstall package_name`
- To check install package = `package_name --version`
- To check list of package in venv = `pip freeze --local or pip list --local`

## **Git commands**
- To add all file = `git add .`
- To add any particular file = `git add `
- To commit = `git commit -m "commit message"`
- To push the code = `git push origin main`

**To run streamlit command:**
```streamlit
streamlit run
streamlit run app.py
```

## Docs:

- Github Action : https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
- yaml docs : https://yaml.org/spec/1.2.2/
- Streamlit : https://docs.streamlit.io/