-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 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 |
---|---|---|
|
@@ -233,6 +233,23 @@ POSTGRES_DB - Test database name (The same as TEST_DB_NAME) | |
|
||
For running tests in windows installing `win-node-env` module is recommended | ||
|
||
## Showing guides on the screen | ||
|
||
After setting up the project, copy and paste the script that can be found in the Code tab of the Settings. Modify Api Base URL to point out to the url of tour backend server. The code snippet can also be found here: | ||
|
||
` | ||
window.bwApiBaseUrl = 'https://guidefox-demo.bluewavelabs.ca/api/'; | ||
window.bwAgentBaseUrl = 'https://cdn.jsdelivr.net/gh/bluewave-labs/[email protected]/jsAgent/'; | ||
|
||
var s=document.createElement("script"); | ||
s.type="text/javascript"; | ||
s.async=false; | ||
s.onerror=()=>{console.log("onboard not loaded");}; | ||
s.src = window.bwAgentBaseUrl + '/main.js'; | ||
(document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]).appendChild(s); | ||
` | ||
|
||
We are working on a browser extention to move this code there to improve the user experience. | ||
|
||
## Contributing | ||
|
||
|