Metadata-Version: 2.1
Name: mocca-edc
Version: 0.1.33
Summary: MOCCA (ext) Trial EDC
Home-page: https://github.com/mocca-trial/mocca-edc
Author: Erik van Widenfelt
Author-email: ew2789@gmail.com
License: GPL license, see LICENSE
Keywords: django MOCCA MOCCA RESPOND-AFRICA EDC
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS.rst

|pypi| |actions| |codecov| |downloads|



mocca-edc
---------


Liverpool School of Tropical Medicine


http://www.isrctn.com/


See also https://github.com/clinicedc/edc



Installation
------------

To setup and run a test server locally

You'll need mysql and Redis. Create the database

.. code-block:: bash

  mysql -Bse 'create database mocca character set utf8;'


Create and activate a virtual environment

.. code-block:: bash

  conda create -n edc python=3.9
  conda activate edc


Clone the main repo and checkout master

.. code-block:: bash

  mkdir ~/app
  cd ~/app
  git clone https://github.com/mocca-trial/mocca-edc.git
  cd ~/app/mocca-edc
  git checkout master


Copy the test environment file

.. code-block:: bash

  cd ~/app/mocca-edc
  git checkout master
  cp .env-tests .env


Edit the environment file (.env) to include your mysql password in the ``DATABASE_URL``.

.. code-block:: bash

  # look for and update this line
  DATABASE_URL=mysql://user:password@127.0.0.1:3306/mocca


Continue with the installation

.. code-block:: bash

  cd ~/app/mocca-edc
  git checkout master
  pip install -U -r requirements.txt
  python manage.py migrate
  python manage.py import_randomization_list
  python manage.py import_holidays


Ensure Redis is running

.. code-block:: bash

  $ redis-cli ping
  PONG


Create a user and start up `runserver`

.. code-block:: bash

  cd ~/app/mocca-edc
  git checkout master
  python manage.py createsuperuser
  python manage.py runserver


Login::

  localhost:8000



.. |pypi| image:: https://img.shields.io/pypi/v/mocca-edc.svg
    :target: https://pypi.python.org/pypi/mocca-edc

.. |actions| image:: https://github.com/mocca-trial/mocca-edc/workflows/build/badge.svg?branch=develop
  :target: https://github.com/mocca-trial/mocca-edc/actions?query=workflow:build

.. |codecov| image:: https://codecov.io/gh/mocca-trial/mocca-edc/branch/develop/graph/badge.svg
  :target: https://codecov.io/gh/mocca-trial/mocca-edc

.. |downloads| image:: https://pepy.tech/badge/mocca-edc
   :target: https://pepy.tech/project/mocca-edc



