Dillon Hafer

Results 8 comments of Dillon Hafer

For url images, they need to look like this: ```js const image = {uri: 'url'} ``` Then you can do something like this: ```js const slides = [ { image:...

You can set an env var of `RAILS_MASTER_KEY=yoursecret` or put the `master.key` in your shared files directive: ``` set :shared_files, fetch(:shared_files, []).concat(%w( config/master.key )) ``` I would probably just suggest...

You are responsible for uploading your key files to `/var/www/travclub.com/staging/shared/config/credentials` Mina will simply symlink the files in the shared folder into the current release.

Your command is running perfectly! Your command is to run `rsync`, which is working because `rsync` is giving you an error; it cannot find the remote folder `No such file...

I disabled this with an `at_exit` block ```ruby SimpleCov.at_exit do original_file_descriptor = $stdout $stdout.reopen("/dev/null") SimpleCov.result.format! $stdout.reopen(original_file_descriptor) end ```

I use the same postgres initializer and it appears to use `timestamptz` for me

I believe the data attributes got changed to the transition interface: ```js // data-transition-enter="transition-all ease-in-out duration-300" // data-transition-enter-from="bg-opacity-0" // data-transition-enter-to="bg-opacity-80" // data-transition-leave="transition-all ease-in-out duration-300" // data-transition-leave-from="bg-opacity-80" // data-transition-leave-to="bg-opacity-0" ```

I'm using the tabs.js file from this PR to work around this bug for now.