diff --git a/.bookignore b/.bookignore new file mode 100644 index 0000000..e050987 --- /dev/null +++ b/.bookignore @@ -0,0 +1,2 @@ +Dockerfile +instructions.md diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cbbfca6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM node:13-alpine + +RUN npm install -g gitbook-cli + +WORKDIR /usr/src/app + +COPY . . + +EXPOSE 4000 + +RUN gitbook build + +CMD ["gitbook", "serve"] diff --git a/FAQ/mews-li-migration.md b/FAQ/mews-li-migration.md index 85d9017..c9f07f6 100644 --- a/FAQ/mews-li-migration.md +++ b/FAQ/mews-li-migration.md @@ -39,4 +39,4 @@ Replace the domain in your booking engine loading script from `https://mews.li` ``` After a successful migration, the keyword `mews.li` should no longer appear on your website. -If you have any questions, please contact us at support@mews.com. +If you have any questions, please open a ticket from Mews Operations via our Mews Digital Assistant. diff --git a/FAQ/ways-to-integrate.md b/FAQ/ways-to-integrate.md index be5ae79..d03606f 100644 --- a/FAQ/ways-to-integrate.md +++ b/FAQ/ways-to-integrate.md @@ -5,7 +5,7 @@ You can integrate with the __Mews Booking Engine__ in one of three ways. Which o ## Booking Engine Standalone If you’re not sure which integration method to use, go with the standalone option. It’s the simplest way to connect your website with the Mews Booking Engine and enable your guests to make direct bookings. -We will provide you with a link to a page where your Booking Engine instance is located. For more information, see [Booking Engine Standalone](../booking-engine-standalone/README.md) or contact our support team at [support@mews.com](mailto:support@mews.com). +We will provide you with a link to a page where your Booking Engine instance is located. For more information, see [Booking Engine Standalone](../booking-engine-standalone/README.md) or open a ticket from Mews Operations via our Mews Digital Assistant. ## Booking Engine Widget @@ -19,4 +19,4 @@ Note that this option is only available to customers with an Enterprise subscrip ## Need help? -Browse the Guide to see if your question is answered, but if not and you need further assistance, please get in touch via [support@mews.com](mailto:support@mews.com). +Browse the Guide to see if your question is answered, but if not and you need further assistance, you can open a ticket from Mews Operations via our Mews Digital Assistant. diff --git a/README.md b/README.md index 727ec60..8eb40be 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ You can do this in one of three ways: * [Booking Engine API](booking-engine-api/README.md)
Create your own custom booking engine using the Booking Engine API Not sure which option is right for you? See [Ways to integrate](FAQ/ways-to-integrate.md). -If you need further assistance, or have any questions or special requests, please contact [support@mews.com](mailto:support@mews.com). +If you need further assistance, or have any questions or special requests, please open a ticket from Mews Operations via our Mews Digital Assistant. > ### Terminology > You may see reference to the term *Distributor*, either in the Guide, in URLs or in code snippets, this is the old name for the *Mews Booking Engine* before it was re-branded. diff --git a/instruction.md b/instruction.md new file mode 100644 index 0000000..d2dd3e3 --- /dev/null +++ b/instruction.md @@ -0,0 +1,13 @@ +# How to run gitbook locally: + +## Install Rancher Desktop +https://rancherdesktop.io/ + +```bash +# Build docker image with current directory as context +docker build -t mews-gitbook . +# Run docker image with port 4000 exposed +docker run -p 4000:4000 mews-gitbook +``` + +Access the gitbook at http://localhost:4000