タグ

qiitaとbitbucketに関するsatoshieのブックマーク (2)

  • BitbucketでCI/CDを設定する - Qiita

    概要 Bitbucket pipelineを使ってCI/CDを設定します。 今回はReactのアプリケーションの場合、どのように設定するかをご紹介します。 設定方法が分かれば、他の言語を使ったアプリケーションでも応用が効きます。 bitbucket pipelinesを有効にする。 Repository settingsからpipelinesのSettingsを選択して、有効にします。 bitbucket-pipelines.ymlを設定する 設定したいリポジトリのホームディレクトリにbitbucket-pipelines.ymlを設定します。 以下は、最低限の設定を記載しました。必要に応じて追加してください。 pipelines: default: - step: caches: - node - pip script: - npm install - npm test branches

    BitbucketでCI/CDを設定する - Qiita
  • BitbucketでSSH接続 - Qiita

    $ cd ~/.ssh $ ssh-keygen -t rsa -C mail@mail <----自分のメールアドレス Generating public/private rsa key pair. Enter file in which to save the key (/home/vagrant/.ssh/id_rsa):   <-----Enterを押す Enter passphrase (empty for no passphrase):               <-----Enterを押す Enter same passphrase again:                       <-----Enterを押す Your identification has been saved in /home/vagrant/.ssh/id_rsa. Your public k

    BitbucketでSSH接続 - Qiita
  • 1