Skip to content

A french national platform allowing citizens to request mediation for administrative issues

License

Notifications You must be signed in to change notification settings

inclusion-numerique/mediature

Repository files navigation

Mediature

A french national platform allowing citizens to request mediation for administrative issues. It provides to cities and regions an easy way to process and coordinate all the requests they receive by leveraging technology. It's an helpdesk, but dedicated to their experience!

All the states of the application are described visually on a Storybook. It renders fake data but allows you to discover the project without dealing with real flows: https://dev--63755f407b1dc7a43c637c1d.chromatic.com

Usage

This monorepository is managed with pnpm, have it installed and run:

pnpm install

Then you can have a look at the Makefile file to see common available commands.

For example to start developing, launch the application and the Storybook with:

make serve

If you want to only launch one of the two:

  • Application: cd apps/main && pnpm dev
  • Storybook: cd apps/docs && pnpm dev

Note the application needs some tools to run locally:

  • the database
  • a mail catcher to prevent using a real SMTP

The easiest way to do so is by using docker-compose. In another terminal just set up all tools:

docker-compose up

And when calling it a day you can stop those containers with:

docker-compose down

That's it! But still, we advise you to read the documentation below to better understand how the project is structured.

Technical setup

AlwaysData

This helps for DNS delegation (to configure domains, emails...). Configuration steps will be specified below for each service that needs specific DNS records.

GitHub

Apps & Actions

  • CodeCov: code coverage reports (we have CodeQL in addition in the CI/CD... pick just one in the future)
  • Lighthouse: accessibility reports (we also have an accessibility plugin for Storybook, but this one only helps while developping)

Environments

You must configure 2 environments in the CI/CD settings:

  • global (to restrict to dev and main branches only)
  • dev (to restrict to dev branch only)
  • prod (to restrict to main branch only)

Secrets

The following ones must be repository secrets (not environment ones):

  • CHROMATIC_PROJECT_TOKEN: [SECRET]
  • LHCI_GITHUB_APP_TOKEN: [SECRET]
  • SENTRY_URL: [SECRET] (format https://xxx.yyy.zzz/)
  • SENTRY_AUTH_TOKEN: [SECRET]
  • SENTRY_ORG: [SECRET]
  • SENTRY_PROJECT: [SECRET]

Default branch

The default branch is dev.

Branch protection rules

  1. Pattern: main Checked:

    • Require status checks to pass before merging
    • Do not allow bypassing the above settings
  2. Pattern: dev Checked:

    • Require linear history
    • Do not allow bypassing the above settings
    • Allow force pushes (+ "Specify who can force push" and leave for administrators)

Sentry

Helpful to monitor

We use Sentry to monitor errors that happen on frontend and backend. It has been added everywhere it was needed to catch unexpected errors no matter the tool used (Next.js, Lexical, pg-boss...).

To keep safe sensitive information we just forward userId to help debugging issues, and we prevent sensitive elements from being recorded by rrweb (useful to replay the session up to the issue).

Note: BusinessError errors are not tracked because they are intented to describe a possible error in the user flow (validation error, entity deleted by someone and no longer existing...)

Since Sentry gets only error details from the built application, we provide source maps during the CI/CD so debugging is easier by seeing original source code. For this we set SENTRY_RELEASE_UPLOAD = true into the ci.yaml file.

Upload sourcemaps

To upload sourcemaps to Sentry you need a specific "auth token", it must have these scopes:

  • project:releases
  • org:read

You can create this token at https://${SENTRY_URL}/settings/account/api/auth-tokens/ ;)

Silent odd errors

Since the application watches all kinds of errors, it happens we collect some that are not reproductible and without any impact for the user experience.

To avoid being notified of those we chose to silent them from the Sentry interface. Just go to your Sentry project interface, then Processing > Inbound Filters > Custom Filters > Error Message and enter the following silent patterns:

*ResizeObserver loop completed with undelivered notifications*

Scalingo

Global

We enabled the Postgres addon and the "review apps" feature.

Domains

For each environment you need to configure the domain DNS records to target the Scalingo instance when accessing the domain.

For the www subdomain:

  • Type: CNAME
  • Hostname: www
  • Value: xxxxxxxxxx.scalingo.io (depending on the environment)

And since the root domain cannot use a CNAME we have to use fixed IPs:

  • Type: A
  • Hostname: ``
  • Value: xxx.xxx.xxx.xxx (depending on the environment)

(you can find those IPs at https://doc.scalingo.com/platform/app/domain#configure-your-domain-name . There is a low risk they change so we should be fine... another dynamic solution would have been to use an ALIAS record if the DNS provider is compatible but it disables the DNSSEC and we are not confident yet of the real underlying risks so we stick we A records for now)

Once done, go to your Scalingo domains settings and add your domains for each environment. If for an environment you want to accept both example.com and www.example.com, make sure to promote within Scalingo www.example.com as canonical. It means other domains will redirect (HTTP 301) to the canonical one (just be sure of your choice, 301 is cached on the users browser so it cannot be reverted easily after some time... and Scalingo does not provide a 302 redirection for now).

There is also an option to "force HTTPS" inside Settings > Routing, please use it.

Postgres

Extensions

Just enable with the SQL query CREATE extension ${EXTENSION}; the following extensions needed by some of our libraries (on all environments):

  • uuid-ossp
  • pgcrypto
Tooling

When using Docker you will be able to use pgAdmin 4, and for your local workspace just choose the software that fits your need. Preferences for:

  • pgAdmin 4 (specific to Postgres)
  • DBeaver (RDBMS-agnostic)

Environment variables

Scalingo is used as a PaaS to host our builds.

For each build and runtime (since they are shared), you should have set some environment variables.

For the "main" app
  • BUILD_APP_NAME: main (it would be docs if you wanted to deploy the other app)
  • APP_MODE: prod or dev (depending on the instance you deploy)
  • GITHUB_TOKEN: [SECRET] _(limited GitHub fine-grained personal access tokens scoped to this repository, see the Scalingo section)
  • SCALINGO_POSTGRESQL_URL: [GENERATED] (you must add as query parameter sslmode=prefer. Also, in the development environment since using limited database resources (maximum 10 connections) we want the current runtime, potentially the one being deployed, plus maybe a local database connection to debug, to all be supported (1 runtime has 2 clients due to Prisma and PgBoss), so we chose to set in development the query parameter connection_limit=1)
  • DATABASE_URL: $SCALINGO_POSTGRESQL_URL (filled by Scalingo automatically when adding a database)
  • MAINTENANCE_API_KEY: [SECRET] (random string that can be generated with openssl rand -base64 32. Note this is needed to perform maintenance through dedicated API endpoints)
  • FILE_AUTH_SECRET: [SECRET] (random string that can be generated with openssl rand -base64 32. Note this token is just for the short-lived read permission of private attachments)
  • NEXT_AUTH_SECRET: [SECRET] (random string that can be generated with openssl rand -base64 32. Note that if this secret is lost, all users will have to log in again)
  • NEXT_PUBLIC_APP_BASE_URL: [TO_DEFINE] (must be the root URL to access the application, format https://xxx.yyy.zzz)
  • CRISP_SIGNING_SECRET_KEY: [SECRET] (this secret is generated from your Crisp account and depends on the development or production environment)
  • NEXT_PUBLIC_CRISP_WEBSITE_ID: [TO_DEFINE] (this ID is defined in your Crisp account and depends on the development or production environment)
  • NEXT_PUBLIC_SENTRY_DSN: [SECRET] (format https://xxx.yyy.zzz/nn)
  • MAILER_DEFAULT_DOMAIN: [TO_DEFINE] (format xxx.yyy.zzz depending on the environment application URL)
  • NEXT_PUBLIC_MAILER_DEFAULT_DOMAIN: $MAILER_DEFAULT_DOMAIN (value needed for some frontend displays)
  • MAILER_DOMAINS_TO_CATCH: domain.demo (this should only be set in the development environment)
  • MAILER_SMTP_HOST: [SECRET]
  • MAILER_SMTP_PORT: [SECRET]
  • MAILER_SMTP_USER: [SECRET]
  • MAILER_SMTP_PASSWORD: [SECRET]
  • MAILER_FALLBACK_SMTP_HOST: [SECRET]
  • MAILER_FALLBACK_SMTP_PORT: [SECRET]
  • MAILER_FALLBACK_SMTP_USER: [SECRET]
  • MAILER_FALLBACK_SMTP_PASSWORD: [SECRET]
  • MAILJET_API_KEY: [SECRET] (from the Mailjet interface inside the API Key Management section)
  • MAILJET_SECRET_KEY: [SECRET] (from the Mailjet interface inside the API Key Management section)
  • MAILJET_WEBHOOK_DOMAIN: [TO_DEFINE] (note $MAILER_DEFAULT_DOMAIN is used as a fallback but for example in production the target domain contains www in addition (compared to an email domain), so this variable allows taking this into account)
  • MAILJET_WEBHOOK_AUTH_USERNAME: [SECRET] (if you change it you need to recreate all virtual inboxes so they have the webhook URL with the right Basic HTTP Authentication credentials)
  • MAILJET_WEBHOOK_AUTH_PASSWORD: [SECRET] (it must not contain characters like % or # otherwise Mailjet will fail parsing the password since included in an URL (it's encoded but still, they fail). If you change it you need to recreate all virtual inboxes so they have the webhook URL with the right Basic HTTP Authentication credentials)

Review apps

Those are temporary environments, different than dev and prod. Since they have their own random generated IDs, we use the scalingo.json file to:

  • adjust environment variables
  • seed the database to have some data to test on

GitHub access

During the build we get some repository information from GitHub to enhance Sentry metadata. It went well for some time but randomly we got the error: API rate limit exceeded for ${IP} (...) But here's the good news: Authenticated requests get a higher rate limit.

By default the @octokit/rest client will fetch data while not being authenticated so we share the quota with others, which may fail. We decided to create a fine-grained personal access token scoped to the current repository with only the scope Read-Only on Contents to be used as GITHUB_TOKEN in Scalingo. The only drawback is we need to specify an expiration with 1 year as maximum (we hope they will change it in the future to allow "no expiration" as for classic tokens).

Note that the other way is to create a GitHub App, connect it to the repository, manage the token... which is way more complicated! Even with the current 1 year expiration we are fine since builds are done only if people is working on the project :)

Monitoring

It's important to be aware of some events, for this we decided to monitor:

  • Scalingo (responsible for the application and database)
  • Sentry (responsible for gathering runtime issues)

Note that doing it after the full setup will avoid flooding your inbox :)

IMPORTANT: keep in mind webhook URL tokens can be invalidated if someone leaves the project while he created them.

Scalingo

For both the development and production environments you need to create notifiers by following the following steps.

First, create a Slack notifier named tech to keep an eye on the global activity, specify the webhook URL to use and enable those events:

  • addon_db_upgraded
  • addon_deleted
  • addon_plan_changed
  • addon_provisioned
  • addon_resumed
  • addon_suspended
  • alert_added
  • alert_deleted
  • app_alert_triggered
  • app_command_ran
  • app_crashed
  • app_crashed_repeated
  • app_deleted
  • app_deployed (ideally only in production but finally to both, otherwise we are not notified of deployment failure (they should have a dedicated event for this...))
  • app_edited
  • app_region_migration_started
  • app_renamed
  • app_restarted
  • app_scaled
  • app_stopped
  • app_transferred
  • collaborator_accepted
  • collaborator_invited
  • collaborator_removed
  • domain_added
  • domain_edited
  • domain_removed
  • github_link
  • github_unlink
  • notifier_added
  • notifier_edited
  • notifier_removed
  • variable_added
  • variable_bulk_edited
  • variable_edited
  • variable_removed

And in some cases you don't want to miss the notification, because it's a runtime failure, a sensitive setting that changed... For this create an email notifier named tech-important and add appropriate people to be notified. Enable those events:

  • addon_deleted
  • addon_suspended
  • app_alert_triggered
  • app_crashed
  • app_crashed_repeated
  • app_deleted
  • app_region_migration_started
  • app_renamed
  • app_transferred
  • collaborator_accepted
  • collaborator_invited
  • collaborator_removed
  • domain_added
  • domain_edited
  • domain_removed
  • github_link
  • github_unlink
  • notifier_edited (only in production)
  • notifier_removed (only in production)
  • variable_bulk_edited (only in production)
  • variable_edited (only in production)
  • variable_removed (only in production)

Find more context on those events on https://doc.scalingo.com/platform/app/notification

Debug the runtime

To debug scalingo apps you may prefer using their CLI with some commands like:

scalingo login --api-token ${SCALINGO_API_TOKEN}
scalingo -a ${SCALINGO_APP_NAME} addons
scalingo -a ${SCALINGO_APP_NAME} logs
scalingo -a ${SCALINGO_APP_NAME} logs --addon ${SCALING_ADDON_ID}
scalingo -a ${SCALINGO_APP_NAME} run bash
scalingo -a ${SCALINGO_APP_NAME} pgsql-console
scalingo -a ${SCALINGO_APP_NAME} db-tunnel ${SCALINGO_DATABASE_URL}

Note that:

  • pgsql-console command will logs you onto the database but it's shell only (it uses the default Scalingo user)
  • db-tunnel command sets up a SSH tunnel first, so you need to configure your public SSH key in your Scalingo account settings, but then you will be able to use local software to navigate through the database, or even migrating the schema with custom scripts. Also note ${SCALINGO_DATABASE_URL} can be either replaced by the database URL content directly, or by an environment variable to get the content from (using the format MY_ENV_VAR_FOR_DATABASE_URL)

To debug a remote database we advise creating a specific user (because you are not suppose to store credentials of super users). Make sure the user created has been granted needed roles on business tables (through the psql-console command), something like GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA $SCHEMA TO $USERNAME; that you can customize as needed ;) . (If you still see no table that's probably because you logged into the wrong database)

Debug the CI/CD pipeline

Scalingo uses the Heroku technology of buildpacks to embed your application at runtime and it's quite complicated to replicate the logic locally. It does not bring the flexibility of a custom Docker image, nor the new "standard" tool to manage buildpacks (https://buildpacks.io/).

In case you have an edge pipeline error, it may help to try using herokuish for mimicing the build embedding your application in the wanted buildpack. It's not a miror of the Scalingo pipeline but it can help. The easier thing we found for now is to use a custom Dockerfile:

FROM gliderlabs/herokuish:latest

COPY . /app

ENV BUILD_APP_NAME=main

On the other side if you are looking for investigating a built image, Scalingo provides a paid addon to access the registry of images that passed their pipeline with success (those are Docker images). It helped us in the past to optimize excessive size of remaining dependencies for example.

Emails

Outgoing

We use 2 providers to send emails:

  • the main one (Mailjet)
  • the fallback one (SendInBlue) in case the main one is not reachable it keeps our delivary reactive

Sending verified emails must be taken seriously so they don't end into the spam inbox. Keeping a good reputation by sending necessary content so users don't flag you as spam.

Also you need to configure your DNS records to handle from both providers on the 2 environments (development and production): DMARC/DKIM/SPF. It's well explained when adding sending domains on their interface. It will make your emails signed according to your domain.

When creating SMTP credentials make sure sure to use different ones between the development and the production environment.

Note: don't forget to enable the transactional emailing feature on SendInBlue by contacting the support, it will save you for the run :p

Incoming

The project has a messenger-like feature through emails, and we use Mailjet to receive incoming emails. The idea is to configure our DNS records so incoming emails go to their servers and then they use a webhook to notify us of the content of this email.

Each "inbox" we want to manage is explicitly created/deleted by the API client (there is no way to do a "wildcard" address).

For each environment, just add this DNS record:

  • Type: MX
  • Hostname: ``
  • Priority: 0
  • Value: parse.mailjet.com.

The only authentication method allowed for the webhook was to include inside the URL Basic Authentication, so don't forget to set MAILJET_WEBHOOK_AUTH_USERNAME and MAILJET_WEBHOOK_AUTH_PASSWORD from the start (because you change it you need to recreate all virtual inboxes so they have the webhook URL with the right credentials).

Crisp

Crisp is used as a livechat both for visitors and users.

From their interface we create 2 websites:

  • Production: use the production domain
  • Development: use the development domain

Set the name:

  • Production: Médiature
  • Development: Médiature [DEV]

And upload as the icon the one used for the website (usually apple-touch-icon.png has enough quality).

Add to the team the people you need (without giving too many rights depending on their role).

Into the Chatbox & Email settings section go to Chat Appearance and set:

  • Color theme (chatbot color): Red
  • Chatbox background (message texture): Default (No background)

Then go to Chatbox Security and enable Lock the chatbox to website domain (and subdomains) (not need to enable it inside the development environment).

And inside Advanced configuration, enable Verify user emails with cryptographic signatures. This will help making sure someone named "John Doe" engaging the conversation in the livechat is really our agent "John Doe" of the platform and not someone trying to impersonate his identity. Since Crisp messaging is initialized from the frontend, without the cryptographic trick it would be impossible to certify a user asking for sensitive operation is the expected one.

It will give you a secret you that you need to serve to your backend as CRISP_SIGNING_SECRET_KEY (it should not be available on the frontend side contrarily to the website ID). (for now, we only use it in production since it requires ugprading the Crisp plan)

On the other site, the public "website ID" will be used as NEXT_PUBLIC_CRISP_WEBSITE_ID.

Maintenance

Since everything stateful is inside the PostgreSQL you should be able to do most of the maintenance from DBeaver.

Retrieve old data from backups

Just download the database backup from the Scalingo interface and run it locally with Docker with no volume (to be sure not keeping sensitive data locally):

  • Terminal 1:
docker run -it --rm -p 15432:5432 --name tmp_postgres -e POSTGRES_PASSWORD=postgres -v $(pwd)/${BACKUP_FILENAME}.pgsql:/backup.pgsql postgres
  • Terminal 2:
docker exec -it tmp_postgres bash
pg_restore -U postgres -d postgres --no-owner -v /backup.pgsql
psql -U postgres -d postgres

Then debug from SQL inline or use DBeaver to connect to localhost:15432 with above credentials.

Once done, stop the container and remove the downloaded .tar.gz / .psql files.

Replay jobs

Except the case of replaying queueing jobs once they fail because they may be archived already. And since it's a bit tricky to move a job directly from SQL while cleaning its right properties, we decided to make an endpoint for this as an helper:

  • [POST] /api/maintenance/jobs/replay (it expects as body { jobId: "..." })

Note that to reach maintenance endpoints you have to pass a header X-API-KEY that must match the server environment variable MAINTENANCE_API_KEY.

IDE

Since the most used IDE as of today is Visual Studio Code we decided to go we it. Using it as well will make you benefit from all the settings we set for this project.

Manual steps

Every settings should work directly when opening the project with vscode, except for TypeScript.

Even if your project uses a TypeScript program located inside your node_modules, the IDE generally uses its own. Which may imply differences since it's not the same version. We do recommend using the exact same, for this it's simple:

  1. Open a project TypeScript file
  2. Open the IDE command input
  3. Type TypeScript and click on the item TypeScript: Select TypeScript Version...
  4. Then select Use Workspace Version

In addition, using the workspace TypeScript will load compilerOptions.plugins specified in your tsconfig.json files, which is not the case otherwise. Those plugins will bring more confort while developing!

Tips

Cron tasks

Doing tasks on a regular basis is a real subject, ask yourself:

  • Is it critical if a task schedule is missed? (ideally it could be trigger manually if the support team notices that, so keep track of it)
  • Is it critical if multiple app instances run the same task concurrently?
  • Does the job needs to be restarted if it fails?

... doing only in-app scheduling would break the persistence and concurrency challenges. On the other side, using a third-party to trigger our tasks is risky too since you rely on it and on the network. Even in the last case you should use a central locker to be sure you don't run 2 times the job in case of a close network retry.

The conclusion, in all cases we need something out of the app and that can manage atomicity for concurrency. So we chose to adopt pg-boss that allows us to use our own PostgreSQL like a basic tasks queue, it brings persistence, locking, and task monitoring with states (scheduled, canceled, failed, archived)... this is great because in 1 place we now finally have all things to debug, same in case of backups we do have the "task log".

Frontend development

i18n

Currently we only use i18n to help displaying ENUM values. We use the i18n Ally VSCode extension to improve a bit the usage but everything can be written manually in .json files :)

Storybook
Use it first

Developing a UI component by launching the whole application is annoying because you may have to do specific interactions to end viewing the right state of the component you are building.

We advise when doing some UI to only run Storybook locally, so you do not worry about other stuff. You can also mock your API calls! At the end splitting your component into different stories makes easy for non-technical people of the team to view deepest details. They will be able to review the visual changes with Chromatic, and also from the Storybook they will save too their time avoiding complex interactions to see specific state of the application.

It's not magical, it does not replace unit and end-to-end testing, but it helps :)

Advantages
  • Accessibility reports
  • See almost all tests of your application
  • Helps architecturing your components split
  • Their rendering is tested in the CI/CD, so it's very likely your components are valid at runtime
How we test stories

You can do UI testing scoped to components (I mean, not full end-to-end), and if so, it's recommended to reuse the stories to benefit from their mocking set up.

A decision we took to keep in mind: it's common to create a .test.js file to test that a component renders correctly (thanks to Jest, Playwright or Cypress), but since we have "Storybook test runners" already in place that pop each component, we feel it's better to use the story play function concept (also used by the interaction addon) to make sure they are rendering correctly.

  • It avoids rendering each component one more time
  • It saves 1 file and it's clearer since from Storybook you can see in the "Interactions" tab if the expected behavior is matched

Those kind of tests may be useful to:

  • Make sure for an atomic component the data is displayed correctly (but it's likely the work of your team to review visual changes)
  • Guarantee the sequences when mocking (e.g. first a loader, then the form is displayed), it helps also the "Storybook test runners" to wait the right moment to take a screenshot/snapshot of the final state (through Chromatic in this case), not intermediate ones since the runner doesn't know when the component is fully loaded otherwise

(in case you have specific needs of testing that should not pollute the Storybook stories, go with a .test.js file, see examples here)

Tip: during the testing you could findByText but it's recommended to findByRole. It helps thinking and building for accessibility from scratch (because no, accessibility is not done/advised by an accessibility automated check unfortunately).

Testing performance

During the test we render the story, we test the light theme accessibility and then we switch to the dark theme to test it too. The re-rendering for color change over the entire DOM is unpredictable, it depends on the CPU saturation. We had some leakage of previous theme rendered over the new one.

We evaluated 2 solutions:

  • limit the number of Jest workers with --maxWorkers
  • increase the amount of time we wait after triggering a theme change

After dozens of tests it appears the most reliable and the fastest is by keeping parallelism (no worker limitation), but increase the amount of time. But this latter depends on the environment:

  • when testing headless: there is less work done, the delay is shorter
  • when testing with a browser rendering: it is in higher demand, to avoid color style leakage we need to increase the delay (tests duration is +50%, which is fine)
Hydratation issue

When developing a frontend it's likely you will have client hydratation according to the server content. It will fail if some browser extensions are enabled and modify the DOM. You need to identify the source of the issue and then, either disable the extension, or request it to not modify the DOM when developing on http://localhost:xxxx/.

From our experience, this can be caused by:

  • Password managers (make sure to have no credentials that match your development URL)
  • Cookie banner automatic rejection (in their settings you're likely to be able to exclude your development URL from being analyzed)

(in React the error was Extra attributes from the server: xxxxx)

Cannot fetch specific files

As for any hydratation issue it worths taking a look at your browser extensions, some may block outgoing requests.

For example:

  • Ad blockers (whitelist the blocked URL in your extension)

Jest not working in VSCode

Sometimes it appears Jest VSCode extension will be stuck and will keep throwing:

env: node: No such file or directory

We found no fix. The only solution is to relaunch VSCode, and if it still doesn't work, try to close entirely VSCode and open it through your terminal with a something like:

code /Users/xxxxx/yyyyy/mediature

Podman (Docker replacement)

In case you use podman instead of docker, it's possible testcontainers won't work out of the box. You need to tell where to find podman socket. For this just use podman machine inspect --format '{{.ConnectionInfo.PodmanSocket.Path}}' and copy the provided path.

Then in your ./apps/main/.env.jest.local (create one if needed) add the following while replacing ${PATH_TO_PASTE} accordingly:

export DOCKER_HOST=unix://${PATH_TO_PASTE}

(If you are on MacOS also set in this file export TESTCONTAINERS_RYUK_DISABLED=true because Ryuk for testcontainers results in "operation not supported" errors as of now)

Formatting documents for compliance

Legal documents are mainly written out of technical scope in a basic text editor, and they may be updated quite often. Either you host them on a Markdown website or you embed them as HTML in your website. For both you have to maintain some transformations and you probably don't want to scan in detail for each modification, ideally you just want to redo all at once to be sure there will be no missing patch.

In this repository you can use ./apps/main/format-legal-documents.sh to transform the initial .docx files into .html files:

  • No matter the name of the file it will convert it (though 1 per folder)
  • It allows to collaborate on Word-like software (mainly used by legal people)

Technical architecture document

It has been written into TECHNICAL_ARCHITECTURE_DOCUMENT.md.

Reporting security issue

If you identify a security issue or have any security concerns, please inform us immediately by opening an issue as specified into our security recommandations.