Skip to content

Commit

Permalink
Fix nextauth url in env.local
Browse files Browse the repository at this point in the history
  • Loading branch information
KilianBoute committed Jun 24, 2024
1 parent b3e665f commit f67abef
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
34 changes: 34 additions & 0 deletions ui/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/go/build-context-dockerignore/

**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.next
**/.cache
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose.y*ml
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
**/build
**/dist
LICENSE
README.md
2 changes: 1 addition & 1 deletion ui/.env.development
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
API_URL=http://localhost//api
API_URL=http://api.facialaccess.uug.ai/api/
NEXTAUTH_URL=http://localhost:3000
3 changes: 1 addition & 2 deletions ui/.env.local
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
NEXTAUTH_SECRET=/owlN1tQyTBDtSY5FjKL72lBjmuMQ7EpTAX7SFbj23A=
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=/owlN1tQyTBDtSY5FjKL72lBjmuMQ7EpTAX7SFbj23A=

0 comments on commit f67abef

Please sign in to comment.