Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 709 Bytes

Project-Bootup-Flow.md

File metadata and controls

24 lines (20 loc) · 709 Bytes

Project Boot-Up Flow

These graphs visually show the flow of the bootup process of the project once the client runs the vagrant up command.

  • Boot-Up Structure

    flowchart TB
    subgraph Vagrant["Vagrant (With 'fedora/34-cloud-base' Virtual Machine running in VirtualBox)"]
        subgraph Pipenv
            subgraph Django[Django Application]
            end
        end
    end
    
    Loading
  • Boot-Up Flow

    flowchart TB
    Vagrant["Vagrant (With 'fedora/34-cloud-base' Virtual Machine running in VirtualBox)"]
    Pipenv
    Django
    
    Command["`vagrant up` command"] -->|Launches| Vagrant -->|Launches| Pipenv -->|Launches| Django[Django Application]
    
    Loading