chore: added env_file property to SH-backend docker-compose file
This commit is contained in:
parent
7fde6db9d1
commit
856752db21
2 changed files with 3 additions and 1 deletions
|
|
@ -2,6 +2,8 @@ version: '3.0'
|
|||
services:
|
||||
local:
|
||||
build: .
|
||||
env_file:
|
||||
- .env
|
||||
command: [ "pnpm", "run", "start:dev" ]
|
||||
environment:
|
||||
- PRODUCTION=false
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ export const authCookieHandler = (
|
|||
};
|
||||
|
||||
/**
|
||||
* Sets and returns the cookies in the response object on successful authentication
|
||||
* Decode the cookie header from incoming websocket connects and returns a auth token pair
|
||||
* @param rawCookies cookies from the websocket connection
|
||||
* @returns AuthTokens for JWT strategy to use
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue