Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .attic/container-new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .attic/group-new.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added .attic/nodeimport.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
.env
.tmp-verify/
8 changes: 8 additions & 0 deletions create-a-container/client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
dist
dist-ssr
*.local
.vite
*.log
.DS_Store
*.tsbuildinfo
23 changes: 23 additions & 0 deletions create-a-container/client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Manager Client

Vite + React 19 + TypeScript SPA for the Create-a-Container manager. Styles via Tailwind 4 and `@mieweb/ui` (BlueHive brand).

## Develop

```bash
npm install
npm run dev # http://localhost:5173 (proxies /api/* to Express; other routes are SPA-handled)
```

Express must be running on `http://localhost:3000` (or set `VITE_API_TARGET`).

Comment thread
wreiske marked this conversation as resolved.
## Build

```bash
npm run build # outputs to dist/, served by Express in production
```

## Layout

- `src/app/` — router, layouts, shell
- `src/styles/` — Tailwind + `@mieweb/ui` brand entry
14 changes: 14 additions & 0 deletions create-a-container/client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en" class="h-full">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<title>MIE Container Manager</title>
</head>
<body class="h-full antialiased">
<div id="root" class="h-full"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading
Loading