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.
- Host: GitHub
- URL: https://github.com/codeofrahul/ci-mlops
- Owner: CodeofRahul
- License: mit
- Created: 2025-01-04T10:51:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-04T13:39:25.000Z (about 1 year ago)
- Last Synced: 2025-01-30T03:18:57.613Z (about 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/