paul
Joined 4/4/2024
paul said over 1 year ago on Kamal Logs :
Thanks  David Kimura  for your quick responses. I don't need any identifiable information of the users . How can I set docker to not keep any of these info or set a time to remove logs? I am trying to crate a cookies policy for my app and I want to comply the gdpr which tells that you can have logs for troubleshooting issues but set a time limit for you logs. 

Currently I have this:   

  # production.rb file
  config.logger = ActiveSupport::Logger.new("log/production.log", 5, 50.megabytes)


  # application.rb file
    config.lograge.formatter = Lograge::Formatters::Json.new
    config.lograge.custom_options = lambda do |event|
      {
        controller: event.payload[:controller],
        action: event.payload[:action],
        params: event.payload[:params].except("controller", "action"),
        method: event.payload[:method],
        status: event.payload[:status],
        format: event.payload[:format],
        path: event.payload[:path],
      }
    end
 

paul said over 1 year ago on Development Approach :
  David Kimura  you are a wizard! Thanks for the video.  I have a question. Let's take your choose your game story example. Lets say you created this game using a python script and not ruby, and we want to wrap this into an api to intergrade it with a rails app. How would you approach this? Is there any video you recommend from your channel to understand more about these stuff! 

paul said about 1 year ago on Classification Models :
Thank you David Kimura !

paul said about 1 year ago on Kamal Maintenance Mode :
Thanks! Quick question: I have Kamal version 2.3 , Can I just update Kamal version to the latest without any problems?


paul said 3 months ago on Kamal Registry :
I am deploying a second Rails app using Kamal 2. I already have one private app on Docker Hub's free tier. I have a question. Regarding Docker Hub: If I were to use it, do I need to manually create the repository on the website first, or does Kamal automatically create it when I set image: username/app and add my token to .kamal/secrets? And this should be free or should I update to a paid docker vesion? And are we sure that we should add our docker hub username to begin with?