File tree 8 files changed +316
-47
lines changed
8 files changed +316
-47
lines changed Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : actions/checkout@v3
16
16
- 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
18
19
env :
19
20
FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
20
21
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 }}
Original file line number Diff line number Diff line change 1
1
.dockerignore
2
2
.env *
3
3
.gitignore
4
+ .terraform *
4
5
Dockerfile
5
6
e2e
6
7
fly.toml
8
+ main.tf
7
9
node_modules /
8
10
playwright *
11
+ terraform *
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import solidJs from "@astrojs/solid-js";
8
8
export default defineConfig ( {
9
9
output : 'server' ,
10
10
adapter : node ( {
11
- mode : 'standalone '
11
+ mode : 'middleware '
12
12
} ) ,
13
13
integrations : [ solidJs ( ) ]
14
14
} ) ;
Original file line number Diff line number Diff line change 1
1
# fly.toml file generated for vlach-cookbook on 2022-10-08T14:51:25-07:00
2
2
3
3
# 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.
4
12
app = " vlach-cookbook-staging"
5
13
kill_signal = " SIGINT"
6
14
kill_timeout = 5
Original file line number Diff line number Diff line change 9
9
"private" : true ,
10
10
"scripts" : {
11
11
"dev" : " astro dev" ,
12
- "start" : " node ./dist/ server/entry .mjs" ,
12
+ "start" : " node ./server.mjs" ,
13
13
"build" : " astro build" ,
14
14
"preview" : " astro preview" ,
15
15
"astro" : " astro"
16
16
},
17
17
"engines" : {
18
18
"node" : " 18"
19
19
},
20
- "packageManager" : " pnpm@7.21.0 " ,
20
+ "packageManager" : " pnpm@7.26.1 " ,
21
21
"dependencies" : {
22
22
"@astrojs/node" : " ^4.0.0" ,
23
23
"@astrojs/solid-js" : " ^1.2.3" ,
24
24
"@prisma/client" : " ^4.8.1" ,
25
25
"astro" : " ^1.9.2" ,
26
+ "debug" : " ^4.3.4" ,
26
27
"dset" : " ^3.1.2" ,
28
+ "express" : " ^4.18.2" ,
27
29
"google-auth-library" : " ^8.7.0" ,
28
30
"markdown-it" : " ^13.0.1" ,
29
31
"prisma" : " ^4.8.1" ,
30
32
"solid-js" : " ^1.6.9"
31
33
},
32
34
"devDependencies" : {
33
- "@playwright/test" : " ^ 1.29.2" ,
35
+ "@playwright/test" : " 1.29.2" ,
34
36
"@types/markdown-it" : " ^12.2.3" ,
35
37
"@types/node" : " ^18.11.18" ,
36
38
"dotenv-cli" : " ^6.0.0"
You can’t perform that action at this time.
0 commit comments