Skip to content

Commit d8ac749

Browse files
committed
resolve conflicts
2 parents b9560e9 + c3e3a88 commit d8ac749

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@
4242
!/.env
4343

4444
!/config/credentials/development.key
45+
.DS_Store

app/views/layouts/application.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
group-hover:to-primary-700 transition-all
143143
"
144144
>
145-
<%= image_tag "neural-network.png", class: "w-16" %>
145+
<%= image_tag "neural-network.png", class: "w-8" %>
146146
</h1>
147147
</a>
148148
</div>

config/database.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,7 @@ production:
6868
<<: *default
6969
database: storage/production_cable.sqlite3
7070
migrations_paths: db/cable_migrate
71-
errors: *errors
71+
errors:
72+
<<: *default
73+
database: storage/production-errors.sqlite3
74+
migrations_paths: db/errors_migrate

config/initializers/001_ensure_required_env.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55

66
if Rails.env.production?
77
required_env_vars += %w[
8-
RAILS_MASTER_KEY DATABASE_URL SENDGRID_API_KEY
9-
GOOGLE_CLIENT_ID GOOGLE_CLIENT_SECRET
10-
GITHUB_CLIENT_ID GITHUB_CLIENT_SECRET
8+
RAILS_MASTER_KEY
119
]
1210
end
1311

fly.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ console_command = '/rails/bin/rails console'
1010
[build]
1111

1212
[http_service]
13-
internal_port = 8080
13+
internal_port = 3000
1414
force_https = true
15-
auto_stop_machines = 'stop'
15+
auto_stop_machines = false
1616
auto_start_machines = true
17-
min_machines_running = 0
17+
min_machines_running = 1
18+
max_machines_running = 1
1819
processes = ['app']
1920

2021
[[vm]]
@@ -24,5 +25,5 @@ console_command = '/rails/bin/rails console'
2425

2526
[mounts]
2627
source = "unicef_hack_25"
27-
destination = "/data"
28-
processes= ["app"]
28+
destination = "/rails/storage"
29+
processes = ["app"]

0 commit comments

Comments
 (0)