Add web-app with machine-specific builds
Implements per-machine customization for web-app deployment: - Shared web-app source code deployed to all machines - Machine-specific .env files and images - Build helper script to assemble and build on target machines 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
c6d226778d
commit
a84ebea315
5 changed files with 134 additions and 0 deletions
10
web-app/index.html
Normal file
10
web-app/index.html
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Web App</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Welcome to Web App</h1>
|
||||
<img src="public/logo.png" alt="Logo">
|
||||
</body>
|
||||
</html>
|
||||
8
web-app/package.json
Normal file
8
web-app/package.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "web-app",
|
||||
"version": "1.0.0",
|
||||
"description": "Example web application",
|
||||
"scripts": {
|
||||
"build": "echo 'Building web-app...' && mkdir -p dist && cp -r public dist/ && cp .env dist/"
|
||||
}
|
||||
}
|
||||
0
web-app/public/.gitkeep
Normal file
0
web-app/public/.gitkeep
Normal file
Loading…
Add table
Add a link
Reference in a new issue