-
Notifications
You must be signed in to change notification settings - Fork 2
Developer Guide
Here you can find a guide on how to contribute to the Discourse Analysis Tool Suite (DATS) as a developer.
The DATS is developed as a client-server application and gets deployed via docker-compose. Since backend and frontend development is very different, this guide is split in two.
The setup described here uses docker compose to run auxiliary software like PostgreSQL, Redis etc., while running the backend and/or frontend outside of docker in a more traditional development environment.
You will need a Linux machine with Docker, optimally with NVIDIA Container Toolkit for GPU support. Other operation systems are not supported!
-
Install VSCode for development. We curated a list of extensions that are required for developing DATS and wrote several launch configurations that help with the development.
-
Clone this repository
git clone git@github.com:uhh-lt/dats.git
-
Install the recommended VSCode plugins. Once you open the dats folder, a popup asks if the recommended extensions should be installed automatically. Answer with yes.
-
Install python environment. We use micromamba to manage python versions.
- See micromamba install instructions here. We use these commands
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba
, then./bin/micromamba shell init -s bash -r ~/micromamba
. Make sure you install mircomamba in your home direction (cd ~
). After installing, it is required to restart the terminal, otherwise, the newmicromamba
command is not recognized. - We recommend to add an alias to your .bashrc:
alias mm='micromamba'
. Use this to edit the filenano ~/.bashrc
. - Install the environment: First navigate to backend with
cd backend
then install the dats environment withmicromamba env create -f environment.yml
- Activate the environment with
micromamba activate dats
- Install additional dependencies from our ray_model_worker service:
pip install -r src/app/preprocessing/ray_model_worker/requirements.txt
- Finally, install the ray dependency:
pip install ray==2.32.0
- Set the newly create dats python environment as the Python Interpreter in VS Code. Therefore, use the shortcut CTRL/CMD + SHIFT + P and type Select Interpreter. From the dropdown, select the micromamba dats environment.
- See micromamba install instructions here. We use these commands
-
Install the Node.js environment. We use node version manager (nvm)
- See nvm install instructions here. We use these commands
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
. Make sure you install nvm in your home direction (cd ~
). After installing, it is required to restart the terminal, otherwise, the newnvm
command is not recognized. - Install Node 20.17.0:
nvm install 20.17.0
- Install the environment: First navigate to frontend with
cd frontend
then install the dependencies withnpm install
- See nvm install instructions here. We use these commands
-
Install pre-commit. We use pre-commit for automatic code linting for the backend. (Prettier is used for the frontend).
- Install the pre-commit dependency with
pip install pre-commit
. - Initialize pre-commit with
pre-commit install
- Install the pre-commit dependency with
Done! Now you have everything installed to get started with DATS development.
We start with setting up the services running inside docker containers:
- Configure the docker containers. In the
docker
directory, you will find a.env.example
file to configure various settings. Start by making a copy of it:cp .env.example .env
. Now modify the .env file accordingly:- Change
UID
andGID
to match user and group id of your current user. This will prevent permission problems with volumes mapping files into the container. You can find your users IDs withid
. - Change
COMPOSE_PROJECT_NAME
to prevent collisions with other docker compose projects running on the same machine. - Change all values ending in
_EXPOSED
to configure the various ports your services will be available on, taking care to prevent conflicts with other services running on your machine. We will configure the backend later to access these ports. - With
COMPOSE_PROFILES
you can change which services will be started. For development, we recommend to remove backend and frontend from this list. We won't need it because we will start the backend and frontend ourselves, outside of docker. Adddevelopment
to the list. - We recommend to use
RAY_CONFIG=config_cpu.yaml
for development. - Use
pwgen
to create the JWT_SECRET
- Change
- Run the script
./setup-folders.sh
to automatically create directories for storing and caching ML models as well as uploaded documents. - Run
docker compose up -d
to start all docker containers. Usedocker compose ps
to check that all containers are running. On the first start, this will take quite a while, as the container will download some large AI models.
For a full, complete restart of the docker containers, we recommend the following procedure:
-
docker compose down -v
- Stop all containers and remove the volumes. -
rm -r backend_repo
- Remove all uploaded user data -
./setup-folders
- Create the backend_repo folder again -
docker compose pull
- Download the lastest docker containers of DATS -
docker compose up -d
- Restart all docker containers
The backend is written in Python and is organized in directories each responsible for different tasks.
-
backend/src/api
-> REST API endpoints consumed by the frontend (or other clients) -
backend/src/app/core
-> core backend logic such as the data model, internal service modules, search and analysis functionality -
backend/src/app/docprepro
-> document preprocessing logic -
backend/src/test
-> unit, integration, and e2e tests -
backend/src/configs
-> configuration files to customize the backend behavior (handle with care!)
- Tell the backend how to reach the various services running in docker. In
backend/.env.example
, you can find an example configuration. Make a copy of this config withcp .env.example .env
. Next, set the_PORT
settings to match the_EXPOSED
ports from before indocker/.env
. Change theREPO_ROOT
string to point to thedocker/backend_repo
folder inside your repository. Finally, change the API_PORT. Usepwgen
to create the JWT_SECRET. - (optional) Load the backend configuration into your shell using
set -o allexport; source backend/.env; set +o allexport
. - In VSCODE, navigate to 'Run and Debug' and launch 'backend'.
This section describes deploying the backend API to production.
One container is built for the backend-api as well as the celery-background-jobs-worker as they share the same dependencies.
The startup command (entrypoint) decides if the container is serving the API or running as a worker.
The different entrypoints can be found at backend/src/*_entrypoint.sh
, where every script corresponds to exactly one worker type.
The backend source code is copied into the container, so are the config files in backend/src/configs
, which can be altered to configure various settings.
This is what our release github action does:
- Build docker container:
docker build -f Dockerfile -t uhhlt/dats_backend:{version}.
- Push docker container:
docker push uhhlt/dats_backend:{version}
The Data Model (DM) (located at backend/src/app/core/data/
) is the core of the DATS and represents all it's entities. The DM is based on sqlalchemy and pydantic. Although sqlalchemy is (mostly) database agnostic, the intended database for the DATS DM is PostgreSQL.
The entities (i.e. database tables) are based on sqlalchemy
and are located in backend/src/app/core/data/orm
-- ORM stands for Object-Relational Mapping and defines the bridge between python classes and objects and the database. To perform Create-Read-Update-Delete (CRUD) operations we use the interfaces defined in backend/src/app/core/data/crud
. To transfer entities between the frontend and the backend (and also often internally in the backend) we make use the DTOs (Data Transfer Objects) based on pydantic
, which are located in backend/src/app/core/data/dto
.
In this guide, you will learn all steps necessary to extend the DATS Data Model.
Please always have a look at implementations of other existing entities for examples and coding/naming conventions!
To define the ORM, first create a new file in backend/src/app/core/data/orm
. For examples and further help, have a look at other files defined in this directory and the sqlalchemy
documentation.
If you need an ObjectHandle (basically a pointer) for that entity (e.g. to enable Memos for that entity), you also have to extend the ObjectHandleORM accordingly.
To register the ORM, import the class in the import_all_orms
module (backend/src/app/core/data/db/import_all_orms.py
). Then tell alembic to look at that file and generate a migration for models that are not present in the database yet. In VSCODE, navigate to
alembic revision --autogenerate -m "short description"
To define the DTOs, first, create a new file in backend/src/app/core/data/dto
with the same filename as the ORM file. In that file, add the DTOs as separate classes that inherit from each other (if possible).
To implement the CRUD object, first, create a new file in backend/src/app/core/data/crud
with the same filename as the ORM and DTO file. In that file, create a CRUD class that inherits from CRUDBase
with the DTOs from the previous step. This already provides basic CRUD operations. If you need to customize or add operations, implement the respective methods in this class.
The frontend is written in TypeScript using React, bootstrapped with Create React App. It is organized in directories each responsible for different tasks.
-
frontend/src/api
-> custom TanStack Query hooks to communicate with the backend via the automatically generated API client inopenapi
. -
frontend/src/components
-> reusable UI components -
frontend/src/features
-> components that implement logic and access the API to build a feature. These features are used across the app and are not specific to a certain route. -
frontend/src/layouts
-> different page layouts used by the routing library. -
frontend/src/plugins
-> configuration files to customize the behavior of various plugins. -
frontend/src/router
-> configuration of the React Router. -
frontend/src/store
-> configuration of the global store - Redux Toolkit. -
frontend/src/view
-> the main directory of the app. Every subfolder corresponds to a route. All features specific only to the corresponding route are implemented here.
- Configure the frontend. Copy
.env.development.example
to.env.development
and copy.env.production.example
to.env.production
. Infrontend/.env.development
, configureVITE_APP_SERVER
andVITE_APP_CONTENT
with the values from the previous step (API_EXPOSED
andCONTENT_SERVER_EXPOSED
). ChangePORT
. - (optional) Load the frontend configuration into your current shell using
set -o allexport; source .env.development; set +o allexport
. - Run
npm run dev
to start the frontend. Checkhttps://localhost:{PORT}
to see if everything is working. - Run
npm run tsc-watch
to watch for errors during development. Run this command in a seperate terminal.
When deploying the frontend, the React code is first bundled and then served via an NGINX web server.
In production mode, the NGINX web server also acts as a reverse proxy for communication with the backend.
frontend/.env.production/
is configured to make the backend api available at /api
and the content server available at /content
.
The matching configuration of the NGINX web server is located at /docker/nginx.conf
.
- Build docker container:
docker build -f Dockerfile -t uhhlt/dats_frontend:latest .
- (optional) Push docker container:
docker push uhhlt/dats_frontend:latest
The backend uses FastAPI to serve an accessible API that follows the OpenAPI standard. We consume this API by automatically generating an OpenAPI client with OpenAPI Typescript Codegen and build hooks around that with TanStack Query, that can be conveniently used in all components.
In case the backend is updated and offers new API endpoints, the following steps must be performed to make them available in the frontend:
-
npm run update-api
- download the new OpenAPI specification of the backend. -
npm run generate-api
- generate the new client. This command deletes everything infrontend/src/api/openapi
, generates new code, and formats it with prettier. -
npm run dev
- start the frontend again. - Implement a new Hook in
frontend/src/api
.
Docker-compose is used to orchestrate the frontend, API, celery workers databases and other services that are used in the DATS Tool Suite.
- Configure ports and credentials in
/docker/.env
- (optional) Note the environment variable
DATS_BACKEND_CONFIG
, which links tobackend/src/configs/default_localhost_dev.yaml
per default, additional adjustments can be made. - Set-up the folder structure with
sh /docker/setup-folders.sh
. This script createsmodels_cache
for storing various ML models,spacy_models
for storing various spaCy models for different languages,backend_repo
for storing uploaded documents andtika
that stores Java executables for Apache TIKA. - Deploy the application with
docker compose up -d
. Check withdocker compose ps
that all containers are running.
We use Semantic Versioning as explained below:
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes
- MINOR version when you add functionality in a backward compatible manner
- PATCH version when you make backward compatible bug fixes
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
For reference, see https://semver.org/.
In the root of the repository, run:
bin/release.sh 1.0.3
This will update all necessary files, create a commit and matching tag, and push it. The github action will then take care of building containers and creating a github release.