Skip to content

Commit 61e3704

Browse files
committedJan 28, 2023
Use Fly.io machines to auto-stop the staging server when it's not in use.
* Teach the server to exit after $MAX_IDLE_SECONDS of no active requests. * Update the machines image within the github action.
1 parent 5538252 commit 61e3704

File tree

8 files changed

+316
-47
lines changed

8 files changed

+316
-47
lines changed
 

‎.github/workflows/staging.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v3
1616
- uses: superfly/flyctl-actions/setup-flyctl@master
17-
- run: flyctl deploy --remote-only webserver
17+
- name: Build the image.
18+
run: flyctl deploy --remote-only --image-label ${{ github.sha }} --build-only --push webserver
1819
env:
1920
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
2021
NO_COLOR: 1
22+
- name: Update the machine's image.
23+
run: flyctl image update --image registry.fly.io/vlach-cookbook-staging:${{ github.sha }} -a vlach-cookbook-staging --yes
24+
env:
25+
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

‎webserver/.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
.dockerignore
22
.env*
33
.gitignore
4+
.terraform*
45
Dockerfile
56
e2e
67
fly.toml
8+
main.tf
79
node_modules/
810
playwright*
11+
terraform*

‎webserver/astro.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import solidJs from "@astrojs/solid-js";
88
export default defineConfig({
99
output: 'server',
1010
adapter: node({
11-
mode: 'standalone'
11+
mode: 'middleware'
1212
}),
1313
integrations: [solidJs()]
1414
});

‎webserver/fly.toml

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# fly.toml file generated for vlach-cookbook on 2022-10-08T14:51:25-07:00
22

33
# Use `-a vlach-cookbook` to deploy the production app.
4+
# The staging app is actually configured using the following commands:
5+
#
6+
# fly ips allocate-v4 --shared
7+
# fly ips allocate-v6
8+
# fly machine run . --cpus 1 --size shared-cpu-1x --memory 256 --region sea \
9+
# --env HOST=:: --env PORT=8080 --env MAX_IDLE_SECONDS=600 --port 443:8080/tcp:tls:http
10+
#
11+
# And then see .github/workflows/staging.yml for how its image is updated.
412
app = "vlach-cookbook-staging"
513
kill_signal = "SIGINT"
614
kill_timeout = 5

‎webserver/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,30 @@
99
"private": true,
1010
"scripts": {
1111
"dev": "astro dev",
12-
"start": "node ./dist/server/entry.mjs",
12+
"start": "node ./server.mjs",
1313
"build": "astro build",
1414
"preview": "astro preview",
1515
"astro": "astro"
1616
},
1717
"engines": {
1818
"node": "18"
1919
},
20-
"packageManager": "pnpm@7.21.0",
20+
"packageManager": "pnpm@7.26.1",
2121
"dependencies": {
2222
"@astrojs/node": "^4.0.0",
2323
"@astrojs/solid-js": "^1.2.3",
2424
"@prisma/client": "^4.8.1",
2525
"astro": "^1.9.2",
26+
"debug": "^4.3.4",
2627
"dset": "^3.1.2",
28+
"express": "^4.18.2",
2729
"google-auth-library": "^8.7.0",
2830
"markdown-it": "^13.0.1",
2931
"prisma": "^4.8.1",
3032
"solid-js": "^1.6.9"
3133
},
3234
"devDependencies": {
33-
"@playwright/test": "^1.29.2",
35+
"@playwright/test": "1.29.2",
3436
"@types/markdown-it": "^12.2.3",
3537
"@types/node": "^18.11.18",
3638
"dotenv-cli": "^6.0.0"

0 commit comments

Comments
 (0)
Please sign in to comment.