Skip to content

Commit

Permalink
fly deployment of 0.9 legacy docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rodja committed Dec 13, 2022
1 parent b4041d9 commit 935179f
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# flyctl launch added from .gitignore
**/__pycache__
**/*.egg-info
**/.*.swp
**/dist
test.py
**/*.pickle
**/tests/screenshots

# flyctl launch added from .pytest_cache/.gitignore
# Created by pytest automatically.
.pytest_cache/**/*

# flyctl launch added from tests/.pytest_cache/.gitignore
# Created by pytest automatically.
tests/.pytest_cache/**/*
41 changes: 41 additions & 0 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# fly.toml file generated for nicegui-0-9 on 2022-12-12T19:52:01+01:00

app = "nicegui-0-9"
kill_signal = "SIGINT"
kill_timeout = 5
processes = []

[env]

[build]
image = "zauberzeug/nicegui:0.9.25"

[experimental]
allowed_public_ports = []
auto_rollback = true

[[services]]
http_checks = []
internal_port = 8080
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 25
soft_limit = 20
type = "connections"

[[services.ports]]
force_https = true
handlers = ["http"]
port = 80

[[services.ports]]
handlers = ["tls", "http"]
port = 443

[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 0
timeout = "2s"

0 comments on commit 935179f

Please sign in to comment.