Upload Blueprint Workflow
This section describes the workflow for uploading a blueprint to a Cloudify Manager environment.
sequenceDiagram
    participant CLI
    participant NP as Nginx (Proxy)
    participant REST
    participant NF as Nginx (Fileserver)
    participant PSQL as PostgreSQL
    CLI->>CLI: cfy blueprints upload
    CLI->>CLI: Parse blueprint
    CLI->NP: POST /blueprints
    NP->>NP: validate blueprint size
    NP->>REST: POST /blueprints
    REST->>NF:Copy blueprint & resources
    REST->>PSQL:Save parsed blueprint
    
    
  