Skip to content

Commit

Permalink
Fix fly deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
hovancik committed Mar 7, 2024
1 parent 0c34702 commit c1b904b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
3 changes: 0 additions & 3 deletions app/assets/config/manifest.js
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
//= link_tree ../images
//= link_directory ../javascripts .js
//= link_directory ../stylesheets .css
36 changes: 19 additions & 17 deletions fly.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,41 @@
# fly.toml app configuration file generated for bsdsec on 2023-09-15T18:52:57+02:00
# fly.toml app configuration file generated for bsdsec on 2024-03-07T19:49:34+01:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#

app = "bsdsec"
primary_region = "fra"
kill_signal = "SIGINT"
kill_timeout = "5s"
app = 'bsdsec'
primary_region = 'fra'
kill_signal = 'SIGINT'
kill_timeout = '5s'

[build]
builder = "heroku/builder:22"
buildpacks = ["heroku/nodejs", "heroku/ruby"]
builder = 'heroku/builder:22'
buildpacks = ['heroku/nodejs', 'heroku/ruby']

[build.args]
SECRET_KEY_BASE = "asdf"
SECRET_KEY_BASE = 'asdf'

[deploy]
release_command = "rails db:migrate"
release_command = 'rails db:migrate'

[processes]
app = "puma -C config/puma.rb"
app = 'puma -C config/puma.rb'

[[services]]
protocol = "tcp"
protocol = 'tcp'
internal_port = 3000
processes = ["app"]
processes = ['app']

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

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

[services.concurrency]
type = "connections"
type = 'connections'
hard_limit = 25
soft_limit = 20

0 comments on commit c1b904b

Please sign in to comment.