Skip to content
Jibin Mathews edited this page Jul 6, 2018 · 1 revision

CI/CD Pipeline

This repo currently uses CircleCI for CI/CD pipeline.

Build

Right now the configuration is such that any push to only master branch is built. The build process for checks only runs yarn build.

Deploying to environments

You can trigger a deployment to any environment using git tag. Following is the configuration:

Tag Name Deployment ENV
dev or development dev.blockcluster.io
test test.blockcluster.io (DNS config not done yet)
staging staging.blockcluster.io | www.blockcluster.io | blockcluster.io (Production cluster taken down till product is live)

Steps to deploy

$ git tag --delete <tag_name>
$ git tag -a <tag_name> -m "<some_commit_message>"
$ git push origin <tag_name> -f

Clone this wiki locally