Issue 95 - Feature: Set up environment configuration system #192
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This Pull Request sets up a centralized environment configuration system that validates all required variables when the app starts. Instead of scattering process.env calls throughout the codebase, everything now goes through a single validated config module with TypeScript type safety.
The config system supports development, production, and test environments, and includes helper functions to check which environment we're running in.
Changes Made
env.config.tswith TypeScript Config interfacePORT,NODE_ENVMONGODB_URIJWT_SECRET,JWT_EXPIRES_INALLOWED_ORIGINSEMAIL_SERVICE,EMAIL_USER,EMAIL_PASSbackend/srcto use centralized configdotenv.config()callsisDevelopment(),isProduction(),isTest().envand.env.examplewith all required variablesTesting
Manually tested:
Files Modified
backend/src/config/env.config.ts(new)backend/src/config/db.tsbackend/src/index.tsbackend/src/middleware/errorMiddleware.tsbackend/src/routes/statusRoutes.tsbackend/src/routes/index.tsbackend/.envbackend/.env.exampleCloses #95