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 |
Refer to the README doc for preparation.
-
Make sure that Docker is running.
docker info
-
Get the repository root.
# bash/zsh REPOSITORY_ROOT=$(git rev-parse --show-toplevel)
# PowerShell $REPOSITORY_ROOT = git rev-parse --show-toplevel
-
Navigate to the
completedirectory.cd $REPOSITORY_ROOT/complete
-
Run the containerized apps.
docker compose up --build -d
-
Open a web browser and navigate to
http://localhost:3030. -
Verify if the web application is running properly.
-
Clean up by running the following command to remove the containerized apps.
docker compose down --rmi all