Some checks failed
Basil CI/CD Pipeline / Shared Package Tests (push) Successful in 1m33s
Basil CI/CD Pipeline / Code Linting (push) Successful in 1m35s
Basil CI/CD Pipeline / Security Scanning (push) Successful in 1m39s
Basil CI/CD Pipeline / Web Tests (push) Successful in 1m46s
Basil CI/CD Pipeline / API Tests (push) Successful in 1m59s
Basil CI/CD Pipeline / Build All Packages (push) Successful in 1m31s
Basil CI/CD Pipeline / E2E Tests (push) Has been skipped
Basil CI/CD Pipeline / Trigger Deployment (push) Has been cancelled
Basil CI/CD Pipeline / Build & Push Docker Images (push) Has been cancelled
- Add .env.dev with localhost configuration - Docker Compose builds dev-tagged images - Access dev environment at http://localhost:8088 - CI/CD skips deployment for commits with [dev] tag Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
24 lines
659 B
Plaintext
24 lines
659 B
Plaintext
# Development Environment Variables
|
|
IMAGE_TAG=dev
|
|
DOCKER_REGISTRY=localhost
|
|
DOCKER_USERNAME=basil
|
|
|
|
# Database - uses local postgres from docker-compose
|
|
DATABASE_URL=postgresql://basil:basil@postgres:5432/basil?schema=public
|
|
|
|
# CORS for local development
|
|
CORS_ORIGIN=http://localhost
|
|
|
|
# JWT Secrets (dev only - not secure)
|
|
JWT_SECRET=dev-secret-change-this-in-production-min-32-chars
|
|
JWT_REFRESH_SECRET=dev-refresh-secret-change-this-in-prod-min-32
|
|
|
|
# Google OAuth (optional for dev)
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
GOOGLE_CALLBACK_URL=http://localhost/api/auth/google/callback
|
|
|
|
# Application URLs
|
|
APP_URL=http://localhost
|
|
API_URL=http://localhost/api
|