Create a .env
file in the root directory with the following details.
ENV=production
# MongoDB configurations
DB_HOST= # DB Host IP or similar
DB_USER= # DB User
DB_PASS= # DB Password (Make sure this is URL Encoded)
DB_PORT= # DB Port
DB= # Database
# gRPC configurations
GRPC_PORT=50051
# REST configurations
REST_PORT=3000
# JWT configurations
JWT_ACCESS_SECRET=
JWT_REFRESH_SECRET=
ACCESS_EXPIRES_IN= # time in minutes
REFRESH_EXPIRES_IN= # time in minutes