File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2929
3030# Ignore master key for decrypting credentials and more.
3131/config /master.key
32- node_modules
32+ node_modules
33+
34+ # Ignore env file
35+ .env
Original file line number Diff line number Diff line change 276276
277277PLATFORMS
278278 arm64-darwin-22
279+ arm64-darwin-24
279280 x86_64-linux
280281
281282DEPENDENCIES
Original file line number Diff line number Diff line change @@ -20,22 +20,20 @@ default: &default
2020 # For details on connection pooling, see Rails configuration guide
2121 # https://guides.rubyonrails.org/configuring.html#database-pooling
2222 pool : <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
23+ username : <%= ENV['POSTGRES_USERNAME'] %>
24+ password : <%= ENV['POSTGRES_PASSWORD'] %>
2325
2426development :
2527 adapter : postgresql
2628 encoding : unicode
2729 database : expense_tracker_development
2830 pool : 5
29- username : postgres
30- password : postgres
3131
3232test :
3333 adapter : postgresql
3434 encoding : unicode
3535 database : expense_tracker_test
3636 pool : 5
37- username : postgres
38- password : postgres
3937
4038production :
4139 << : *default
You can’t perform that action at this time.
0 commit comments