Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agutoli/codeship-cli
codeship cli
https://github.com/agutoli/codeship-cli
ci codedeploy codeship codeship-cli devops
Last synced: about 2 months ago
JSON representation
codeship cli
- Host: GitHub
- URL: https://github.com/agutoli/codeship-cli
- Owner: agutoli
- Created: 2018-01-31T06:07:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-03-25T21:27:55.000Z (almost 4 years ago)
- Last Synced: 2024-10-28T22:17:29.063Z (3 months ago)
- Topics: ci, codedeploy, codeship, codeship-cli, devops
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Codeship cli
(Still In Dev)
Codeship client to help find text, see configurations by terminal
## Install
`pip install git+https://github.com/agutoli/codeship-cli.git --no-cache-dir --upgrade`
Note: This library is not published at pypi
## Configure
```shell
$ codeship configure
$ -> Codeship username: [email protected]
$ -> Codeship organization: YOUR-COMPANY-AT-CODESHIP
$ Saved at /Users/your_home/.codeship
```## Commands
* codeship search [text]
```shell
$ codeship search MY-SEARCH-TERM
Codeship password: ****
Searching...
-> uuid=99999999-9999-9999-9999-999999999999: My_Company/some-project (26 occurrences)
-> uuid=88888888-8888-8888-8888-888888888888: My_Company/other-project (51 occurrences)
```* codeship info [uuid]
```shell
$ codeship info 99999999-9999-9999-9999-999999999999
Codeship password: ****
Info project 99999999-9999-9999-9999-999999999999
aes_key: null
authentication_user: Walter White
created_at: '2016-08-29T15:34:32.700Z'
deployment_pipelines:
- branch:
branch_name: master
match_mode: exact
config:
commands:
- npm Install
- ls -la
position: 1
...
```* codeship codedeploy [create|test]
```shell
codeship codedeploy create
--deployment-group application_name_a:deployment_group_name_a \
--deployment-group application_name_b:deployment_group_name_b \
--s3-bucket my_bucket \
--s3-bucket-key my_bucket_key/your_project.zip
``````shell
codeship codedeploy test
--deployment-group application_name_a:deployment_group_name_a \
--deployment-group application_name_b:deployment_group_name_b \
--s3-bucket my_bucket \
--s3-bucket-key my_bucket_key/your_project.zip
```