added password hashing

This commit is contained in:
JBB0807 2025-05-01 16:07:55 -07:00
parent 472dbdb8c7
commit 9149bba868
13 changed files with 364 additions and 75 deletions

View file

@ -11,7 +11,7 @@ services:
ports:
- "3200:3200" # Expose port to the same host
env_file:
- ./assignment-db-service/dev.env
- ./assignment-db-service/.env.development
networks:
- backend
@ -25,7 +25,7 @@ services:
ports:
- "8082:8082" # Expose port to the same host
env_file:
- ./assignment-service/dev.env
- ./assignment-service/.env.development
depends_on:
- js-assignment-db-service
networks:
@ -41,7 +41,7 @@ services:
ports:
- "8080:8080" # Expose port to the same host
env_file:
- ./auth-service/dev.env
- ./auth-service/.env.development
networks:
- backend
@ -55,7 +55,7 @@ services:
ports:
- "3100:3100" # Expose port to the same host
env_file:
- ./user-db-service/dev.env
- ./user-db-service/.env.development
networks:
- backend