Skip to content

Commit 2782f7c

Browse files
committed
Deployed Thoughts example app to Fly.io.
1 parent d6b55b4 commit 2782f7c

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

examples/thoughts/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ Thoughts
55

66
Run `wasp start` to start the app in development mode.
77

8-
This app is deployed at https://wasp-thoughts.netlify.app/ .
8+
This app is deployed at https://wasp-thoughts.netlify.app/ : client at Netlify, server and db at Heroku.
9+
It is also deployed at https://wasp-thoughts-client.fly.dev/ : client, server and db on Fly.io .
910

1011
## TODO
1112

12-
## How it felt so far to build this app in Wasp
13+
## How it felt so far to build this app in Wasp (2022)
1314

1415
Here I write down how I felt while developing this app, so we can use this feedback in the future to improve Wasp. Subjective feedback is also written down.
1516

examples/thoughts/fly-client.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# fly.toml app configuration file generated for wasp-thoughts-client on 2023-10-13T13:45:18+02:00
2+
#
3+
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4+
#
5+
6+
app = "wasp-thoughts-client"
7+
primary_region = "mia"
8+
9+
[build]
10+
11+
[http_service]
12+
internal_port = 8043
13+
force_https = true
14+
auto_stop_machines = true
15+
auto_start_machines = true
16+
min_machines_running = 0
17+
processes = ["app"]

examples/thoughts/fly-server.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# fly.toml app configuration file generated for wasp-thoughts-server on 2023-10-13T13:45:12+02:00
2+
#
3+
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4+
#
5+
6+
app = "wasp-thoughts-server"
7+
primary_region = "mia"
8+
9+
[build]
10+
11+
[http_service]
12+
internal_port = 8080
13+
force_https = true
14+
auto_stop_machines = true
15+
auto_start_machines = true
16+
min_machines_running = 0
17+
processes = ["app"]

0 commit comments

Comments
 (0)