Skip to content

Commit

Permalink
Starting WireMock Mappings UI PoC
Browse files Browse the repository at this point in the history
  • Loading branch information
vanUbor committed Sep 24, 2024
1 parent 8b4acde commit c2ba381
Show file tree
Hide file tree
Showing 11 changed files with 1,039 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WireMock/WireMock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
<Content Include="..\Dockerfile">
<Link>Dockerfile</Link>
</Content>
<Content Include="..\README.md">
<Link>README.md</Link>
</Content>
Expand Down
24 changes: 24 additions & 0 deletions WireMockUI/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
13 changes: 13 additions & 0 deletions WireMockUI/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WireMock Mappings PoC</title>
<link rel="stylesheet" href="/@modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit c2ba381

Please sign in to comment.