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
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/"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue