Skip to content

Commit

Permalink
Initialize GUI with basic structure and configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardodebenedictis committed Jan 15, 2025
1 parent feb93e6 commit c542219
Show file tree
Hide file tree
Showing 12 changed files with 1,342 additions and 4 deletions.
2 changes: 1 addition & 1 deletion extern/rationet
2 changes: 1 addition & 1 deletion extern/riddle
24 changes: 24 additions & 0 deletions gui/.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?
16 changes: 16 additions & 0 deletions gui/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>oRatio</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>

</html>
Loading

0 comments on commit c542219

Please sign in to comment.