Airline Booking System client
How to develop the UI without docker
Make sure you have node installed (e.g. version v20.11.0 which was used to create this).
- Install vite globally via
npm install -g vite
- Navigate to the client directory
- Run
npm install
- Run
npm run dev
- Make changes
- Go to http://localhost:8080/ to see the changes
How to run the UI alone via docker
Note: this does not run the microservices. Make sure you have docker installed.
- Navigate to the client directory
- Run
docker build . -t "airline-client"
- Run
docker run -p 8080:8080 airline-client
- Go to http://localhost:8080/ to view