# Pi Ku E2E Environment Configuration Template # Database (Postgres) E2E_DB_NAME=piku_e2e_db E2E_DB_PORT=5433 E2E_DB_USER=piku_test E2E_DB_PASS=piku_test E2E_DB_DB=piku_e2e # Backend (Django) E2E_BACKEND_PORT=8001 SECRET_KEY=e2e-secret-key-for-piku-testing DEBUG=True ALLOWED_HOSTS=* CORS_ALLOWED_ORIGINS=http://localhost:5173 FRONTEND_URL=http://localhost:5173 EMAIL_HOST=localhost EMAIL_PORT=1025 EMAIL_HOST_USER= EMAIL_HOST_PASSWORD= FROM_EMAIL=testing@piku.local MAILPIT_API_URL=http://localhost:8025/api/v1 # Frontend (Vite/Playwright) VITE_API_URL=http://localhost:8001