Skip to content

Commit

Permalink
introduced dockerfile, removed [email protected] mention
Browse files Browse the repository at this point in the history
  • Loading branch information
progresak committed Mar 27, 2024
1 parent 05a4515 commit cbec139
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .bookignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Dockerfile
instructions.md
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
2 changes: 1 addition & 1 deletion FAQ/mews-li-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected].
If you have any questions, please open a ticket from Mews Operations via our Mews Digital Assistant.
4 changes: 2 additions & 2 deletions FAQ/ways-to-integrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 [[email protected]](mailto:[email protected]).
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

Expand All @@ -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 [[email protected]](mailto:[email protected]).
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.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ You can do this in one of three ways:
* [Booking Engine API](booking-engine-api/README.md)<br>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 [[email protected]](mailto:[email protected]).
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.
Expand Down
13 changes: 13 additions & 0 deletions instruction.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit cbec139

Please sign in to comment.