asdf install
brew install openssl postgresql imagemagick@6 jpegoptim
bundle config build.puma --with-opt-dir=/usr/local/opt/openssl
bundle
bundle exec rake db:setup
bundle exec rails server
cd client
yarn installTo run the rails server
bundle exec rails sTo run the nextjs client
bin/client-devTo run the sidekiq server
bin/sidekiq-devTo run in offline mode, run the server with
OFFLINE_DEV=true bundle exec rails sMake sure you have downloaded the photos for any albums you want to work with,
and place them in public/photos/<album_name>. This can be done with the
following command:
aws s3 cp --recursive s3://robin-photos/<album_name>/ public/photos/<album_name>