Skip to content

Commit 99f3569

Browse files
committed
add the word bash for inline code
1 parent dc614ec commit 99f3569

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

samples/fastapi-postgres/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ This sample project demonstrates how to deploy FastAPI with PostgreSQL with Defa
1313

1414
To run the development container(s) locally, do:
1515

16-
```
16+
```bash
1717
docker compose -f compose.dev.yaml up --build
1818
```
1919

2020
Or to run the production container(s) locally, do:
2121

22-
```
22+
```bash
2323
POSTGRES_PASSWORD=postgres docker compose up --build
2424
```
2525

samples/golang-s3/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@
77
This sample requires an API key to access AWS S3. The name of the config value is referenced in the compose.yaml file.
88
To provide a value for it, you can use the Defang CLI like this:
99

10-
```
10+
```bash
1111
defang config set --name AWS_ACCESS_KEY
1212
defang config set --name AWS_SECRET_KEY
1313
```
1414

1515
and then enter the value when prompted.
1616

1717
## Testing
18-
18+
```bash
1919
curl -X POST -H 'Content-Type: application/json' -d '{ "first_name" : "jane", "last_name" : "doe" }' https://xxxxxx/upload
2020
curl https://xxxxxx/download
21+
```
2122

2223
---
2324

0 commit comments

Comments
 (0)