Self Hosting Primero v2 - issue with primero application container

I’ve started the entire installation process from the beginning and updated the locale_all field from inventory/inventory.yml file. Initially I’ve added the Ukrainian language which is not present in locales_fallbacks.rb file which caused the application container to crash.

Additionally I noticed that while following the installation steps from the tutorial there were some errors with SystemSettings model which I solved by manually creating additional columns in system_settings table:

ALTER TABLE system_settings  
ADD COLUMN notification_email_enabled boolean;
 
ALTER TABLE system_settings  
ADD COLUMN welcome_email_enabled boolean;
 
ALTER TABLE system_settings  
ADD COLUMN approvals_labels_ar jsonb;