Flight Information Display System
Go to file
Santiago Lo Coco 40839f3cc6 Add English and Spanish README 2024-04-21 12:52:31 +02:00
auth-domain Add more tests 2023-12-07 00:25:43 -03:00
browser-domain Fix subscriptions bug 2023-12-14 13:56:09 -03:00
flights-domain Add search 2023-12-07 14:40:11 -03:00
gateway Add search 2023-12-07 14:40:11 -03:00
observability Remove unused code 2023-12-04 22:31:32 -03:00
screen-domain Reformat code 2023-12-07 15:48:49 -03:00
subscription-domain Fix subscriptions bug 2023-12-14 13:56:09 -03:00
testing Update catcher tests 2023-12-07 16:09:26 -03:00
.gitignore Add e2e and interface testing 2023-12-03 21:13:38 -03:00
.gitlab-ci.yml Fix lots of bugs and refactor 2023-12-04 22:16:31 -03:00
.pre-commit-config.yaml Add e2e and interface testing 2023-12-03 21:13:38 -03:00
README.md Add English and Spanish README 2024-04-21 12:52:31 +02:00
README_es.md Add English and Spanish README 2024-04-21 12:52:31 +02:00
run.sh Add more tests 2023-12-07 00:25:43 -03:00

README.md

Leer en español

fids

Components

auth-domain

Contains user-manager with its database. Handles authentication and authorization of users for the browser-domain.

browser-domain

SPA that has three flows depending on whether the user is an airline, a normal user, or an admin.

flights-domain

Contains flights-information with its database. Handles everything related to flight information (CRUD).

screens-domain

PWA designed to be used in an airport. Managed with a single origin and the query param lastUpdated to request changes. It has a database to cache results and be able to work offline.

subscription-domain

Contains subscription-manager with its database. Handles everything related to user subscription, along with sending notifications.

gateway

API gateway responsible for exposing the services. Handles authentication using the auth-domain.

Usage

First, you'll need to configure the .env files as you prefer. Copy and modify the examples:

cp flights-domain/.env.prod.example flights-domain/.env.prod
cp auth-domain/.env.prod.example auth-domain/.env.prod
cp subscription-domain/.env.prod.example subscription-domain/.env.prod

Then, to start all the components, just run:

./run.sh

Finally, if you want to bring them down:

./run.sh -x

Contributing

First, install the pre-commit hook in your local repository (you probably need to install pre-commit first, see how to do it here):

pre-commit install

Then, you can use the run.sh script to test your changes. For example, if you want to bring down and start a particular service:

./run.sh -d flights -x
./run.sh -d flights

In this case, the -d parameter indicates the type of service (it can be subscription, browser, screen, gateway, flights, auth, or elk), and the -x parameter indicates that you want to bring down the service.

If you want to test a service, you can do so by running:

./run.sh -d flights -t