Skip to content
Snippets Groups Projects
Code owners

Airline Booking System client

How to develop the Client

Make sure you have docker (latest) and node installed (e.g. node version v20.11.0 which was used to create this).

  1. Install vite globally via npm install -g vite
  2. Comment out the client from the docker-compose file:
  # client:
  #   build:
  #     context: ./client
  #   image: client:${IMAGE_TAG}
  #   ports:
  #     - "${CLIENT_PORT}:4200"
  1. Run docker compose up -d --build
  2. Navigate to the client directory
  3. Run npm install
  4. Run npm run dev
  5. Go to http://localhost:4200/ to view the app
  6. Make changes save the files and refresh the page