Skip to content

Commit 19a4a76

Browse files
committed
merge main
2 parents 8de9b4a + 3cdb0bb commit 19a4a76

File tree

319 files changed

+7475
-1808
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

319 files changed

+7475
-1808
lines changed

.github/workflows/check-sample.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
- name: Run Checks
2626
id: checks
2727
run: |
28+
. <(curl -Ls https://s.defang.io/install)
2829
./scripts/check-sample-files.sh > checklist.txt
2930
./scripts/check-modified-samples.sh > modified.txt
3031
echo "@@ MODIFIED @@"

samples/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
FROM mcr.microsoft.com/devcontainers/typescript-node:22-bookworm
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"build": {
3+
"dockerfile": "Dockerfile",
4+
"context": ".."
5+
},
6+
"features": {
7+
"ghcr.io/defanglabs/devcontainer-feature/defang-cli:1.0.4": {},
8+
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
9+
"ghcr.io/devcontainers/features/aws-cli:1": {}
10+
}
11+
}

samples/angular-express/.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Deploy
20-
uses: DefangLabs/defang-github-action@v1.0.4
20+
uses: DefangLabs/defang-github-action@v1.1.0

samples/angular-express/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ This sample showcases how you could deploy a full-stack application with Angular
3131

3232
For development, we use two local containers, one for the frontend Angular service and one for the backend service in Express. It also uses Caddy as a web server for serving static files. To run the sample locally after cloning the repository, you can run on Docker by doing:
3333

34-
1. `docker compose -f compose.dev.yaml up`
34+
1. `docker compose -f compose.dev.yaml up --build`
3535

3636
---
3737

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
FROM mcr.microsoft.com/devcontainers/typescript-node:22-bookworm
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"build": {
3+
"dockerfile": "Dockerfile",
4+
"context": ".."
5+
},
6+
"features": {
7+
"ghcr.io/defanglabs/devcontainer-feature/defang-cli:1.0.4": {},
8+
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
9+
"ghcr.io/devcontainers/features/aws-cli:1": {}
10+
}
11+
}

samples/bullmq-bullboard-redis/.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Deploy
20-
uses: DefangLabs/defang-github-action@v1.0.4
20+
uses: DefangLabs/defang-github-action@v1.1.0

samples/bullmq-bullboard-redis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The `worker` service is the queue processor that will process the jobs added to
2424

2525
## Local Development
2626

27-
1. Run `docker compose -f compose.dev.yaml up`
27+
1. Run `docker compose -f compose.dev.yaml up --build`
2828

2929
---
3030

0 commit comments

Comments
 (0)