File tree Expand file tree Collapse file tree 3 files changed +81
-28
lines changed Expand file tree Collapse file tree 3 files changed +81
-28
lines changed Original file line number Diff line number Diff line change 1
- # flyctl launch added from .gitignore
1
+ # Build artifacts
2
2
** /target
3
3
** /target_lambda
4
+
5
+ # Environment and secrets
4
6
** /.env
7
+ ** /.env. *
5
8
** /keypair.pem
6
9
7
- # flyctl launch added from venv/.gitignore
8
- # created by virtualenv automatically
10
+ # Virtual environments
9
11
venv /** /*
12
+
13
+ # Config files
10
14
fly.toml
15
+ fly. * .toml
16
+
17
+ # Version control
18
+ .git
19
+ .gitignore
20
+
21
+ # Editor files
22
+ * .swp
23
+ * .swo
24
+ * .swn
25
+ * .bak
26
+ * .tmp
27
+ * .log
28
+ .vscode
29
+ .idea
30
+ .DS_Store
31
+ * ~
32
+
33
+ # Documentation and non-essential files
34
+ README.md
35
+ BACKLOG.md
36
+ LICENSE
37
+ ** /* .md
38
+ ! Cargo.toml
39
+ ! ** /Cargo.toml
40
+
41
+ # Test files
42
+ ** /tests
43
+ ** /* _test.rs
44
+ ** /* _tests.rs
45
+
46
+ # Scripts
47
+ scripts /
48
+ Makefile
49
+
50
+ # Other
51
+ * .orig
52
+ .coverage
53
+ .pytest_cache
54
+ node_modules
Original file line number Diff line number Diff line change @@ -8,22 +8,25 @@ PORT = "8000"
8
8
PRIMARY_REGION = " ams"
9
9
10
10
[build ]
11
- dockerfile = " Dockerfile"
11
+ dockerfile = " Dockerfile"
12
12
13
13
[[services ]]
14
14
internal_port = 8_000
15
15
protocol = " tcp"
16
+ auto_stop_machines = " stop"
17
+ auto_start_machines = true
18
+ min_machines_running = 0
16
19
17
- [services .concurrency ]
18
- hard_limit = 25
19
- soft_limit = 20
20
- type = " connections"
20
+ [services .concurrency ]
21
+ hard_limit = 25
22
+ soft_limit = 20
23
+ type = " connections"
21
24
22
- [[services .ports ]]
23
- handlers = [ " tls" , " http" ]
24
- port = 443
25
+ [[services .ports ]]
26
+ handlers = [" tls" , " http" ]
27
+ port = 443
25
28
26
- [[services .tcp_checks ]]
27
- grace_period = " 1s"
28
- interval = " 15s"
29
- timeout = " 2s"
29
+ [[services .tcp_checks ]]
30
+ grace_period = " 1s"
31
+ interval = " 15s"
32
+ timeout = " 2s"
Original file line number Diff line number Diff line change 1
1
app = " ileap-preview"
2
2
kill_signal = " SIGINT"
3
3
kill_timeout = " 5s"
4
- primary_region = " ams "
4
+ primary_region = " fra "
5
5
6
6
[env ]
7
7
PORT = " 8000"
8
- PRIMARY_REGION = " ams"
8
+ PRIMARY_REGION = " fra"
9
+
10
+ [build ]
11
+ dockerfile = " Dockerfile"
9
12
10
13
[[services ]]
11
14
internal_port = 8_000
12
15
protocol = " tcp"
16
+ auto_stop_machines = " stop"
17
+ auto_start_machines = true
18
+ min_machines_running = 0
13
19
14
- [services .concurrency ]
15
- hard_limit = 25
16
- soft_limit = 20
17
- type = " connections"
20
+ [services .concurrency ]
21
+ hard_limit = 25
22
+ soft_limit = 20
23
+ type = " connections"
18
24
19
- [[services .ports ]]
20
- handlers = [ " tls" , " http" ]
21
- port = 443
25
+ [[services .ports ]]
26
+ handlers = [" tls" , " http" ]
27
+ port = 443
22
28
23
- [[services .tcp_checks ]]
24
- grace_period = " 1s"
25
- interval = " 15s"
26
- timeout = " 2s"
29
+ [[services .tcp_checks ]]
30
+ grace_period = " 1s"
31
+ interval = " 15s"
32
+ timeout = " 2s"
You can’t perform that action at this time.
0 commit comments