Add Vercel config with React Router preset, vercel-build script and /api/auth rewrite to the Convex site. Add VDS staging compose for the Rivet engine and runner plus systemd units, deployment plan, and Docker/Vercel ignore rules. Lockfile covers both the web and agents dependency additions.
24 lines
490 B
Desktop File
24 lines
490 B
Desktop File
[Unit]
|
|
Description=Zopu agent registry
|
|
After=docker.service network-online.target
|
|
Requires=docker.service
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=zopu
|
|
Group=zopu
|
|
WorkingDirectory=/srv/zopu/source/packages/agents
|
|
EnvironmentFile=/etc/zopu/agents.env
|
|
ExecStart=/opt/zopu/node/bin/node dist/server.mjs
|
|
Restart=always
|
|
RestartSec=5
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
ProtectSystem=full
|
|
ProtectHome=true
|
|
ReadWritePaths=/srv/zopu/workspaces
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|