Description:
The frontend application has a hardcoded API base URL in frontend/src/App.js. This makes it difficult to switch between development and production environments.
Tasks:
Use environment variables to configure the API base URL.
Update the axios configuration to use the environment variable.
Add a .env.example file to the frontend directory to document the required environment variables.
Labels: frontend, config, enhancement
Description:
The frontend application has a hardcoded API base URL in frontend/src/App.js. This makes it difficult to switch between development and production environments.
Tasks:
Use environment variables to configure the API base URL.
Update the axios configuration to use the environment variable.
Add a .env.example file to the frontend directory to document the required environment variables.
Labels: frontend, config, enhancement