Description
در این ویدیو نحوه کار با سرویس AWS Cloud9 IDE را آموزش داده ام.
AWS Cloud 9: Run & Debug Code in Web-based Pair Programming & CodeCommit integrated IDE
AWS Cloud9 IDE
از این سرویس میتوانید برای برنامه نویسی، اجرا و دیباگ کد استفاده کنید.👩💻
امکان برنامه نویسی همزمان و مدیریت ورژن کد از طریق اتصال به Github و CodeCommit نیز وجود دارد.
این سرویس با بقیه سرویس های وب سرویس های آمازون یکپارچه است.
####
aws codecommit create-repository –repository-name Cloud9SampleRepo –repository-description “Sample CodeCommit Repo for Cloud9” –region us-east-2
####
git config –global credential.helper “!aws codecommit credential-helper $@”
git config –global credential.UseHttpPath true
####
git clone CLONE_URL (replace it with CodeCommit repository HTTPS URL)
####
cd Cloud9SampleRepo
####
git status
####
git add –all
####
git commit -m “Added hello.py”
####
git push -u origin master
####