Drexel 2022-2023 AIML Capstone - Digital Pathology
All documentation can be found on our tema Confluence page: https://drexel-cs591-dpath.atlassian.net/wiki/spaces/D2ACDP/overview
Dependency Installation and Setup
A SQS queue is required to send messages and trigger the diagnosis listener. This service is configured to send messages to the digpath-request
queue.
A SQL database is also required to run the service. Run the command below to create a database with a request table and processing table:
The request table will keep track of the requests that are submitted, which file was requested for the processing/diagnosis, and the processing table will keep track of the progress of for that request.
pip install -e .
cd db
python setup_db.py
Running the application
Follow the instructions in the digpath folder to run the application.