- Add Capacitor core, CLI, and Android platform - Install plugins: camera, push-notifications, splash-screen, status-bar - Configure capacitor.config.ts with app ID run.runfoo.veridian - Update vite.config.ts with base: './' for Capacitor compatibility - Update api.ts and SessionTimeoutWarning.tsx to detect Capacitor and use production API URL - Generate Android project structure with Gradle build files
39 lines
459 B
Text
39 lines
459 B
Text
# Dependencies
|
|
node_modules/
|
|
backend/node_modules/
|
|
frontend/node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Production
|
|
dist/
|
|
build/
|
|
backend/dist/
|
|
frontend/dist/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
CREDENTIALS_BACKUP.txt
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Prisma
|
|
backend/prisma/migrations/
|
|
backend/prisma/dev.db
|
|
|
|
# Docker
|
|
docker-compose.env
|
|
_SECRETS_BACKUP
|