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
2 changes: 1 addition & 1 deletion examples/sending emails/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example sends plain-text email with [`sqlpage.send_mail`](https://sql-page.
Run the example:

```sh
docker compose up --build
docker compose -f docker-compose.yml -f docker-compose.local.yml up --build
```

This builds SQLPage from the current repository checkout before starting the example.
Expand Down
6 changes: 6 additions & 0 deletions examples/sending emails/docker-compose.local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
services:
web:
build:
context: ../..
args:
CARGO_PROFILE: dev
4 changes: 0 additions & 4 deletions examples/sending emails/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
services:
web:
image: lovasoa/sqlpage:main
build:
context: ../..
args:
CARGO_PROFILE: dev
ports:
- "8080:8080"
environment:
Expand Down