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.
79 lines
1.4 KiB
Plaintext
79 lines
1.4 KiB
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Build outputs
|
|
dist
|
|
build
|
|
*.tsbuildinfo
|
|
|
|
# Generated files
|
|
apps/web/src/routeTree.gen.ts
|
|
|
|
# Environment variables live at the repository root
|
|
.env
|
|
.env*.local
|
|
!.env.example
|
|
|
|
# IDEs and editors
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Turbo
|
|
.turbo
|
|
.nx
|
|
|
|
# Better-T-Stack
|
|
.alchemy
|
|
.vercel
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
|
|
# Misc
|
|
*.tgz
|
|
.cache
|
|
tmp
|
|
temp
|
|
.env.*
|
|
.env*
|
|
infra/ansible/.gitignore
|
|
infra/ansible/ansible.cfg
|
|
infra/ansible/README.md
|
|
infra/ansible/requirements.yml
|
|
infra/ansible/group_vars/staging_vds.example/main.yml
|
|
infra/ansible/group_vars/staging_vds.example/vault.yml
|
|
infra/ansible/inventory/hosts.example.yml
|
|
infra/ansible/playbooks/converge.yml
|
|
infra/ansible/roles/backup/handlers/main.yml
|
|
infra/ansible/roles/backup/tasks/main.yml
|
|
infra/ansible/roles/backup/templates/zopu-backup.service.j2
|
|
infra/ansible/roles/backup/templates/zopu-backup.sh.j2
|
|
infra/ansible/roles/backup/templates/zopu-backup.timer.j2
|
|
infra/ansible/roles/common/tasks/main.yml
|
|
infra/ansible/roles/directories/tasks/main.yml
|
|
infra/ansible/roles/docker/handlers/main.yml
|
|
infra/ansible/roles/docker/tasks/main.yml
|
|
infra/ansible/roles/docker/vars/main.yml
|
|
infra/ansible/roles/firewall/handlers/main.yml
|
|
infra/ansible/roles/firewall/tasks/main.yml
|