-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a rails application template for Heroku
The app template should be used to regularly generate a Rails app which will have its own app.json and will be a good base to deploy to heroku, but also to fork download to start a solidus store.
- Loading branch information
Showing
3 changed files
with
138 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
#!/usr/bin/env ruby | ||
|
||
# This file can both be used as rails application template and as executable | ||
if $0 == __FILE__ | ||
require 'shellwords' | ||
default_app_name = 'solidus-example-app' | ||
app_name = ARGV.shift || default_app_name | ||
options = ARGV | ||
options.unshift "--database=postgresql" | ||
options.unshift "--force" if app_name == default_app_name | ||
command = "rails", "new", app_name, "-m", __FILE__, *options | ||
warn "This file is intended to be used as Rails Application Template" | ||
warn "Learn more at: https://guides.rubyonrails.org/rails_application_templates.html#generate-what-args" | ||
warn "Falling back to automatic Rails app creation..." | ||
warn "Executing: #{command.shelljoin}" | ||
exec *command | ||
end | ||
|
||
gem 'solidus' | ||
gem 'solidus_auth_devise' | ||
gem 'rails_12factor' | ||
|
||
gem_group :heroku do | ||
# https://elements.heroku.com/addons/cloudinary | ||
gem "cloudinary", "1.10.1.pre.rc" # https://github.com/cloudinary/cloudinary_gem/issues/322 | ||
gem "paperclip-cloudinary" | ||
end | ||
|
||
file "Procfile", <<-YAML | ||
web: bundle exec puma -t 5:5 -p ${PORT:-3000} -e production | ||
YAML | ||
|
||
file "app.json", <<-JSON | ||
{ | ||
"name": "Solidus Example App", | ||
"description": "A demonstration store using Solidus with some test data.", | ||
"website": "https://solidus.io/", | ||
"repository": "https://github.com/solidusio/solidus-example-app", | ||
"logo": "https://solidus.io/assets/images/favicon/favicon.ico", | ||
"keywords": [ | ||
"solidus", | ||
"example", | ||
"rails", | ||
"ecommerce", | ||
"ruby", | ||
"spree", | ||
"cart", | ||
"store" | ||
], | ||
"addons": [ | ||
"heroku-postgresql:hobby-dev", | ||
"memcachier:dev", | ||
"cloudinary:starter" | ||
], | ||
"scripts": { | ||
"postdeploy": "bin/rails db:migrate && bin/rails db:seed spree_sample:load" | ||
}, | ||
"env": { | ||
"ADMIN_EMAIL": { | ||
"description": "We will create an admin user with this email.", | ||
"value": "admin@example.com" | ||
}, | ||
"ADMIN_PASSWORD": { | ||
"description": "We will create an admin user with this password.", | ||
"value": "test123" | ||
}, | ||
"DEVISE_SECRET_KEY": { | ||
"description": "A secret key for salting user passwords.", | ||
"generator": "secret" | ||
}, | ||
"RAILS_LOG_TO_STDOUT": { | ||
"value": "true" | ||
}, | ||
"RAILS_SERVE_STATIC_FILES": { | ||
"value": "true" | ||
}, | ||
"SECRET_KEY_BASE": { | ||
"generator": "secret" | ||
} | ||
} | ||
} | ||
JSON | ||
|
||
file "README.md", <<-MD | ||
# Solidus Example App | ||
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/solidusio/solidus-example-app) | ||
MD | ||
|
||
initializer "00_solidus_example.rb", <<-RUBY | ||
# Needed so database isn't hit on install | ||
Spree::Auth::Config.use_static_preferences! | ||
# Required to work around sample data sending emails | ||
Rails.application.config.action_mailer.raise_delivery_errors = false | ||
RUBY | ||
|
||
initializer "devise.rb", <<-RUBY | ||
Devise.secret_key = ENV['DEVISE_SECRET_KEY'] || #{SecureRandom.hex(50).inspect} | ||
RUBY | ||
|
||
initializer "paperclip.rb", <<-RUBY | ||
if ENV['CLOUDINARY_URL'] | ||
require 'paperclip/cloudinary' | ||
Paperclip::Attachment.default_options[:storage] = :cloudinary | ||
Spree::Image.attachment_definitions[:attachment].delete(:url) | ||
Spree::Image.attachment_definitions[:attachment].delete(:path) | ||
Spree::Image.attachment_definitions[:attachment].delete(:default_url) | ||
Spree::Image.attachment_definitions[:attachment][:cloudinary_url_options] = { | ||
default: { secure: true } | ||
} | ||
end | ||
RUBY | ||
|
||
after_bundle do | ||
generate( | ||
"spree:install", | ||
"--auto-accept", | ||
"--user_class=Spree::User", | ||
"--enforce_available_locales=true", | ||
) | ||
|
||
generate('solidus_auth:install') | ||
rails_command "db:create" | ||
rails_command "db:migrate" | ||
|
||
git :init | ||
git add: "." | ||
git commit: %{ -m 'Generate app with solidus-example-app template' } | ||
|
||
if ENV['UPDATE_EXAMPLE_APP_REPO'] | ||
git remote: %{ add origin git@github.com:solidusio/solidus-example-app.git } | ||
git push: %{ --force --set-upstream origin master } | ||
end | ||
end |