This project is a booking management application built with Next.js.
Follow these steps to run the application in your local environment.
- Node.js (version 18 or later)
- npm (usually comes with Node.js)
-
Clone the repository or download the project files.
-
Navigate to the project directory:
cd booking-app
-
Install the dependencies:
npm install
-
Obtain the
.env
file from a project administrator and place it in the root directory of the project.
To start the development server:
npm run dev
The application should now be running on http://localhost:3000.
This project uses environment variables for configuration. Make sure you have received the .env
file from a project administrator and placed it in the root directory before running the application.
This project uses automated deployment pipelines:
- Pushing to the
main
branch automatically deploys to the development environment. - Pushing to the
staging
branch automatically deploys to the staging environment. - Pushing to the
production
branch automatically deploys to the production environment.
Please ensure you push your changes to the appropriate branch based on the intended deployment environment.