Skip to content

Commit

Permalink
Vue console WIP (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartin82 authored Sep 6, 2024
1 parent 230b671 commit 1e80b96
Show file tree
Hide file tree
Showing 45 changed files with 4,366 additions and 551 deletions.
Binary file added .DS_Store
Binary file not shown.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,19 @@ jobs:
strategy:
matrix:
go-version: [1.21]

node: [ 18 ]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
id: go

- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
id: node

- name: Check out code into the Go module directory
uses: actions/checkout@v3

Expand Down
30 changes: 30 additions & 0 deletions UI/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo
13 changes: 13 additions & 0 deletions UI/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">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MMock Console</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
8 changes: 8 additions & 0 deletions UI/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}
Loading

0 comments on commit 1e80b96

Please sign in to comment.