#Solidus
Install imagemagick for thumbnail generation
brew install imagemagickCreate a new rails app
rails new solidus -d postgresqlAdd solidus gems
gem 'solidus'
gem 'solidus_auth_devise'Run Bundler to install the gems
bundle installCreate development and test databases
rake db:createRun generators to create necessary configuration files and migrations
bundle exec rails g spree:install --migrate=false --sample=false --seed=false # remove options to install sample databundle exec rails g solidus:auth:install
bundle exec rake railties:install:migrationsDefault admin email and password are admin@example.com : test123
Run migrations
bundle exec rake db:migrateRun server to check installation
bundle exec rails serverlocalhost:3000 and localhost:3000/admin should work
It is recommended to create a new admin and delete the default one.