| # Drug Repurposing API - Environment Configuration | |
| # Copy this file to .env and customize values as needed | |
| # Application Settings | |
| DEBUG=True | |
| LOG_LEVEL=INFO | |
| # Server Configuration | |
| HOST=0.0.0.0 | |
| PORT=8000 | |
| # Model Configuration | |
| USE_MOCK_MODEL=False | |
| USE_MOCK_DRUGS=False | |
| DEEP_PURPOSE_MODEL=MPNN_CNN_BindingDB | |
| # TDC Configuration | |
| TDC_DATASET=Half_Life_Obach | |
| # External APIs | |
| OPENTARGETS_API_URL=https://api.platform.opentargets.org/api/v4/graphql | |
| UNIPROT_API_URL=https://rest.uniprot.org/uniprotkb/search | |
| # Screening Parameters | |
| DEFAULT_TOP_TARGETS=10 | |
| DEFAULT_TOP_RESULTS=15 | |
| MAX_TARGETS=50 | |