diff --git a/.gitignore b/.gitignore index 073d4ea..c6c0e05 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,7 @@ # env files (can opt-in for committing if needed) /apps/web/.env* -/apps/web/.env.example +!/apps/web/.env.example # typescript /apps/web/next-env.d.ts \ No newline at end of file diff --git a/apps/web/env.example b/apps/web/.env.example similarity index 72% rename from apps/web/env.example rename to apps/web/.env.example index ef5544a..a3d399b 100644 --- a/apps/web/env.example +++ b/apps/web/.env.example @@ -8,4 +8,8 @@ NEXTAUTH_URL=http://localhost:3000 NEXTAUTH_SECRET=your-secret-key-here # Development Environment -NODE_ENV=development \ No newline at end of file +NODE_ENV=development + +# Redis +UPSTASH_REDIS_REST_URL=http://localhost:8079 +UPSTASH_REDIS_REST_TOKEN=example_token \ No newline at end of file diff --git a/docker-compose.yaml b/docker-compose.yaml index 4703223..0c3ef30 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -10,6 +10,17 @@ services: - postgres_data:/var/lib/postgresql/data ports: - "5432:5432" - + redis: + image: redis + ports: + - "6379:6379" + serverless-redis-http: + ports: + - "8079:80" + image: hiett/serverless-redis-http:latest + environment: + SRH_MODE: env + SRH_TOKEN: example_token + SRH_CONNECTION_STRING: "redis://redis:6379" volumes: postgres_data: