Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Complete App Samples

Here are the list of complete app samples. Because they are also vibe-coded, you can check out how they're built.

Application Location
FastAPI python
React javascript
Spring Boot java
Blazor dotnet

Containerization Sample

Prerequisites

Refer to the README doc for preparation.

Getting Started

  1. Make sure that Docker is running.

    docker info
  2. Get the repository root.

    # bash/zsh
    REPOSITORY_ROOT=$(git rev-parse --show-toplevel)
    # PowerShell
    $REPOSITORY_ROOT = git rev-parse --show-toplevel
  3. Navigate to the complete directory.

    cd $REPOSITORY_ROOT/complete
  4. Run the containerized apps.

    docker compose up --build -d
  5. Open a web browser and navigate to http://localhost:3030.

  6. Verify if the web application is running properly.

  7. Clean up by running the following command to remove the containerized apps.

    docker compose down --rmi all