とりあえずコード書けよ

技術的なことの備忘録。

2021-01-01から1年間の記事一覧

RailsでFATAL: Ident authentication failed for user "hoge"が出る

結論 pg_hba.confを変更する必要がある 手順 psqlを起動 show hba_file;を実行 sudo vi /var/lib/pgsql/12/data/pg_hba.conf IPv4 local connections の部分をidentからtrustに変更 postgresqlを再起動 変更箇所について # "local" is for Unix domain socke…

EC2にswap領域を作る

サーバーのメモリが貧弱だと、webpackのコンパイルとかが厳しい。 この場合、スワップ領域を割り当ててメモリ領域の拡張などの対応をする必要がある。 以下、EC2に反映する際の備忘録 とはいえ、基本これに書いてある通りにやるだけ aws.amazon.com 手順 1 …

cocoonで動的に要素を増やす場合のテスト

結論 cocoonで動的に要素を増やす場合はクラスで対応する。 # view slim&simple_form .nested-fields = f.input :upload_file, as: :file, accept: 'image/jpeg,image/png', input_html: { class: 'upload-images' } # test click_link '画像を追加' # link_…

pumaのproduction用設定

config/puma.rb # Puma can serve each request in a thread from an internal thread pool. # The `threads` method setting takes two numbers: a minimum and maximum. # Any libraries that use thread pools should be configured to match # the maxim…