Some checks failed
CI/CD Pipeline / Backend Tests (push) Has been cancelled
CI/CD Pipeline / Frontend Tests (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
Removed old/unused configuration files: - .env (root) - Old Google OAuth production credentials (not used) - .env.example (root) - Old Google OAuth template (replaced by Auth0) - docker-compose.dev.yml - Old Keycloak setup (replaced by Auth0) - Makefile - Unused build automation Improved environment configuration: - Created frontend/.env.example - Auth0 template for frontend - Updated backend/.env.example: - Fixed port numbers (5433 for postgres, 6380 for redis) - Added clearer Auth0 setup instructions - Matches docker-compose.yml port configuration Current setup: - docker-compose.yml - PostgreSQL & Redis services (in use) - backend/.env - Auth0 credentials (in use, not committed) - frontend/.env - Auth0 credentials (in use, not committed) - *.env.example files - Templates for new developers All old Google OAuth and Keycloak references removed. Application now runs on Auth0 only. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
11 lines
356 B
Plaintext
11 lines
356 B
Plaintext
# API Configuration
|
|
VITE_API_URL=http://localhost:3000/api/v1
|
|
|
|
# Auth0 Configuration
|
|
# Get these from your Auth0 dashboard:
|
|
# 1. Create Application (Single Page Application)
|
|
# 2. Use the Domain, Client ID, and API Audience
|
|
VITE_AUTH0_DOMAIN=your-tenant.us.auth0.com
|
|
VITE_AUTH0_CLIENT_ID=your-auth0-client-id
|
|
VITE_AUTH0_AUDIENCE=https://your-api-identifier
|