'conda --version'
To create the envirement ' conda create -p venv python==3.7'
To activate the envirement 'conda activate venv/'
'pip install -r requirements.txt'
' python -m flask run'
to addd filr to git 'git add '
TO check the comit 'git log'
To create version/commit all chnages by git 'git commit -m "message"'
To send version to git hub 'git push origin main'
To chek remote url 'git remote -v'
#To setup CI/CD piplene in heroku we need 3 information
1.HEROKU_EMAIL='harshal10200@gmail.com' 2.HEROKU_API_KEY='' 3.HEROKU_API_ NAME=
BUILD DOCKER IMGE
'docker build -t <image_name>:.' note =imagname for docker must be in lower case
To list docker img 'docker images'
RUN docker images 'docker run -p 5000:5000 -e PORT=5000 '
TO cheak running container in docker 'docker ps'
To stop the container 'docker stop<container_id>'
install ipykernel 'pip install ipykernel'