You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hardcoded variables and URLs prevent testers/users from easily bringing up the project locally. Environment variables need to be extracted and managed properly. Tasks/Acceptance Criteria:
Remove hardcoded API_BASE or localhost URLs across frontend views and services.
Replace them using Vite build environment variables (import.meta.env.VITE_API_BASE).
Ensure backend similarly imports ESMFold keys or internal endpoints safely using os.getenv.
Create a docker-compose.yml to effortlessly bring up both React and FastAPI concurrently OR specify clear npm/python scripts in a README.md.
Push a generic .env.example mapping out required configs so new devs can run the app seamlessly.
Hardcoded variables and URLs prevent testers/users from easily bringing up the project locally. Environment variables need to be extracted and managed properly.
Tasks/Acceptance Criteria:
API_BASEor localhost URLs across frontend views and services.import.meta.env.VITE_API_BASE).os.getenv.docker-compose.ymlto effortlessly bring up both React and FastAPI concurrently OR specify clear npm/python scripts in aREADME.md..env.examplemapping out required configs so new devs can run the app seamlessly.