Build , Release , Run

I am Beginner, Learning 12 Factor App , I have an idea of Build(code.txt convert to binary) , Release( Build + Config file ) , and then Run process.
Every Release has Release ID .
Confusion 1: My confusion is that On which factor does Release ID depend
Confusion 2: Add some more thought to (Run) process .Describe Clearly

  1. Release ID doesn’t depend on any other factor. It is all part of factor 5 - Build, Release, Run. The release ID is an artifact of the process of creating the release.
  2. Run means simply that. Actually executing the application at a particular release in your execution environment, e.g. test or production.

The official documentation can be found here.

1 Like