All checks were successful
Build Frontend / Build Frontend (push) Successful in 20s
- Deleted frontend/.env which was overriding production builds - Added frontend/.env to .gitignore - Production builds will now use .env.production correctly - WebSocket will connect to api.turbotrades.dev/ws
86 lines
799 B
Plaintext
86 lines
799 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Environment variables
|
|
.env.local
|
|
.env.development
|
|
.env.tunnel
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pino-logger.log
|
|
lerna-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
*.test.js.snap
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
.cache/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# MongoDB
|
|
data/
|
|
dump/
|
|
|
|
# PM2
|
|
.pm2/
|
|
ecosystem.config.js
|
|
|
|
# Session storage
|
|
sessions/
|
|
|
|
# Uploads
|
|
uploads/
|
|
|
|
# SSL certificates
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.csr
|
|
|
|
# Backup files
|
|
*.backup
|
|
*.bak
|
|
*.old
|
|
|
|
# Cloudflare Tunnel
|
|
.cloudflared/
|
|
.tunnel-urls.json
|
|
frontend/.env
|