Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Update repositories
run: |
apt update || echo "apt-update failed" # && apt -y upgrade
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
Expand All @@ -39,7 +39,8 @@ jobs:
python -m pytest
- name: Report Status
if: always()
uses: ravsamhq/notify-slack-action@v1
continue-on-error: true
uses: ravsamhq/notify-slack-action@v2
with:
status: ${{ job.status }}
notify_when: "failure,warnings"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ If you are running this quickstart with a self managed Couchbase cluster, you ne
You need to update the connection string and the credentials in the `.env` file in the source folder.

> Note: Couchbase Server version 7 or higher must be installed and running prior to running the Flask Python app.
>
> Note: The hotel autocomplete and filter endpoints rely on Full Text Search. For a self-managed walkthrough or the full test suite, make sure the cluster has the Search service enabled so the `hotel_search` index can be created on the `travel-sample` bucket (indexing the `inventory.hotel` collection).

### Swagger Documentation

Expand Down
Loading