-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduced dockerfile, removed [email protected] mention
- Loading branch information
Showing
6 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Dockerfile | ||
instructions.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |