The EFFECT Trial
Fluconazole plus flucytosine vs. fluconazole alone for cryptococcal antigen-positive patients identified through screening: A phase III randomised controlled trial
(EFFECT - Efficacy of Flucytosine and Fluconazole as Early Cryptococcal Treatment)
https://www.isrctn.com/ISRCTN30579828
See also https://github.com/clinicedc/edc
To setup and run a test server locally
You'll need mysql. Create the database
mysql -Bse 'create database effect character set utf8;'
Create a virtualenv, clone the main repo and checkout master
conda create -n edc python=3.12
conda activate edc
Clone the main repo and checkout master
mkdir ~/projects
cd projects
https://github.com/effect-trial/effect-edc.git
cd ~/projects/effect-edc
git checkout main
Copy the test environment file
cd ~/projects/effect-edc
git checkout main
cp .env.tests .env
Edit the environment file (.env) to include your mysql password in the DATABASE_URL
.
# look for and update this line
DATABASE_URL=mysql://user:password@127.0.0.1:3306/effect
Continue with the installation
cd ~/projects/effect-edc
git checkout main
pip install .
pip install -U -r requirements.txt
python manage.py migrate
python manage.py import_randomization_list
python manage.py import_holidays
Create a user and start up runserver
cd ~/projects/effect-edc
git checkout main
python manage.py createsuperuser
python manage.py runserver
Login:
http://localhost:8000