23. Move JWT Secret to .env (Points: 3)

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.

Acceptance Criteria:

The participant instead reads the JWT secret off of the .env file.