Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ By the end of this workshop you will understand and have experience with the fol
* Zero code CRUD using data binding
* Rendering repeated items using repeaters
* Wix data hooks
* Wix data events (not to be confused with the wix events vertical)
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I meant the edm events as you said in the beginning :)

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah oops misunderstanding.. wdyt about this?

* EDM events (not to be confused with the wix events vertical)
* Web methods (aka .jsw)
* Expose REST API via velo
* Scheduling jobs (aka setting up cron jobs)
Expand All @@ -28,12 +28,11 @@ By the end of this workshop you will understand and have experience with the fol
## Before we start
Before we'll dive into the workshop there are some important things you should know when working w/ Velo.
* Monitoring and Debugging
* Backend logs can be viewed in the [Site Events (aka logs)](https://manage.wix.com/account/site-selector/?actionUrl=https%3A%2F%2Fmanage.wix.com%2Fdashboard%2F%7BmetaSiteId%7D%2Fsettings%2Fmonitoring%2Fsite-events&title=Site+Events&primaryButtonText=Select) section in the business manager's developer tools menu.
* Debugging client code can be done via the browser's developer tools. Look in the console for the file name of the page you want to debug
* Backend logs as well as client logs can be viewed in the [Site Events (aka logs)](https://manage.wix.com/account/site-selector/?actionUrl=https%3A%2F%2Fmanage.wix.com%2Fdashboard%2F%7BmetaSiteId%7D%2Fsettings%2Fmonitoring%2Fsite-events&title=Site+Events&primaryButtonText=Select) section in the business manager's developer tools menu. Note that you can't browse logs history, you can only see realtime logs, so the logs screen needs to be open during the session (open it in another tab in your browser).
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good note about that the tab should be open. but you didn't explain about debugging client code in the browser..

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is intentional, as I think its easier to debug both (client & backend) via Site Events (mostly because its in the same place), and not via dev tools.. Am I missing something special about debugging in dev tools that you tend to favor?


![debug](assets/debug.png)

* Preview mode - Some Velo features such as "Events" and "Scheduled jobs" doens't work in preview mode. It's best to publish the site and check on production.
* Preview mode - Some Velo features such as "Events" and "Scheduled jobs" doens't work in preview mode. It's best to use a [test-site](https://support.wix.com/en/article/creating-a-test-site), or to publish the site and check on production.
Comment thread
chendelbari marked this conversation as resolved.


## Let's start
Expand Down