Skip to content

Commit

Permalink
Merge pull request #103 from phasehq/fix--dev-env
Browse files Browse the repository at this point in the history
fix: protocols in dev env
  • Loading branch information
rohan-chaturvedi authored Nov 3, 2023
2 parents 5f90e70 + 35ac8a0 commit ba2c78e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .env.dev.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

# Replace with your domain or host
HOST=localhost
HTTP_PROTOCOL=http://
HTTP_PROTOCOL=https://

# Frontend dev
NEXTAUTH_URL=http://localhost
OAUTH_REDIRECT_URI=http://localhost
NEXTAUTH_URL=https://localhost
OAUTH_REDIRECT_URI=https://localhost
BACKEND_API_BASE=http://backend:8000
NEXT_PUBLIC_BACKEND_API_BASE=https://localhost/service
NEXT_PUBLIC_NEXTAUTH_PROVIDERS=google,github,gitlab
Expand All @@ -34,7 +34,7 @@ GITLAB_CLIENT_SECRET=

# Backend dev
ALLOWED_HOSTS=localhost,backend
ALLOWED_ORIGINS=http://localhost
ALLOWED_ORIGINS=https://localhost
SESSION_COOKIE_DOMAIN=localhost

# Database credentials. Change all these values as required, except DATABASE_HOST
Expand Down

0 comments on commit ba2c78e

Please sign in to comment.