- Changed NEXT_PUBLIC_API_URL in .env.development and .env.production to point to the new development and production server URLs, respectively.
- Updated baseUrl in config.development.ts and config.production.ts to reflect the new server addresses for consistent environment configuration.
- Changed NEXT_PUBLIC_API_URL in .env.development and baseUrl in config.development.ts to point to the new local server IP address for development purposes.
- Added DATABASE_URL, DATABASE_CONNECTION_LIMIT, DATABASE_POOL_MIN, DATABASE_POOL_MAX, and SESSION_PASSWORD to .env, .env.development, .env.localhost, and .env.production files.
- Ensured consistent database connection settings across different environments for improved application performance.
- Changed NEXT_PUBLIC_QSP_API_URL to point to a new server address for local development.
- Ensured consistency in API endpoint configuration for development purposes.
- Added EMAIL_TITLE_PREFIX variable to .env.development for system test identification.
- Cleared EMAIL_TITLE_PREFIX in .env.localhost and .env.production for consistency across environments.
- Added NEXT_PUBLIC_RUN_MODE to .env files for environment differentiation.
- Introduced .env.localhost for local development settings.
- Updated .env.production with the correct API URL.
- Modified package.json scripts to utilize env-cmd for environment-specific commands.
- Created a common configuration module to manage environment-specific settings.
- Refactored useAxios to utilize the new configuration for base URL management.
- Enhanced Footer component to display current configuration values.