Update
This commit is contained in:
parent
c51a57d3a2
commit
7ab05f0651
2 changed files with 25 additions and 9 deletions
11
.dockerignore
Normal file
11
.dockerignore
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# flyctl launch added from .gitignore
|
||||||
|
**/node_modules
|
||||||
|
**/goth.stack
|
||||||
|
**/.env
|
||||||
|
**/airbin
|
||||||
|
**/tmp
|
||||||
|
**/*.rdb
|
||||||
|
|
||||||
|
# flyctl launch added from stylegen/node_modules/tailwindcss/stubs/.gitignore
|
||||||
|
!stylegen/node_modules/tailwindcss/stubs/**/*
|
||||||
|
fly.toml
|
23
fly.toml
23
fly.toml
|
@ -1,17 +1,22 @@
|
||||||
|
# fly.toml app configuration file generated for goth-stack on 2024-01-17T12:09:47-07:00
|
||||||
|
#
|
||||||
|
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
|
||||||
|
#
|
||||||
|
|
||||||
app = "goth-stack"
|
app = "goth-stack"
|
||||||
primary_region = "sea"
|
primary_region = "sea"
|
||||||
|
|
||||||
[build]
|
[build]
|
||||||
|
|
||||||
[http_service]
|
[http_service]
|
||||||
internal_port = 3000
|
internal_port = 3000
|
||||||
force_https = true
|
force_https = true
|
||||||
auto_stop_machines = true
|
auto_stop_machines = true
|
||||||
auto_start_machines = true
|
auto_start_machines = true
|
||||||
min_machines_running = 1
|
min_machines_running = 0
|
||||||
processes = ["app"]
|
processes = ["app"]
|
||||||
|
|
||||||
[[vm]]
|
[[vm]]
|
||||||
cpu_kind = "shared"
|
cpu_kind = "shared"
|
||||||
cpus = 1
|
cpus = 1
|
||||||
memory_mb = 256
|
memory_mb = 256
|
||||||
|
|
Loading…
Add table
Reference in a new issue