Currently in the codebase, the JWT secret is being hard coded… this is not good (see: service/src/config/jwt.ts
).
We should instead use a .env
file to store sensitive information.
The participant instead reads the JWT secret off of the .env
file.