Browse Source

When inside Docker, output saved configuration during mastodon:setup (#6711)

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
e5f18ace2a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      lib/tasks/mastodon.rake

+ 8
- 0
lib/tasks/mastodon.rake View File

@ -286,6 +286,14 @@ namespace :mastodon do
File.write(Rails.root.join('.env.production'), "# Generated with mastodon:setup on #{Time.now.utc}\n\n" + env.each_pair.map { |key, value| "#{key}=#{value}" }.join("\n") + "\n") File.write(Rails.root.join('.env.production'), "# Generated with mastodon:setup on #{Time.now.utc}\n\n" + env.each_pair.map { |key, value| "#{key}=#{value}" }.join("\n") + "\n")
if using_docker
prompt.ok 'Below is your configuration, save it to an .env.production file outside Docker:'
prompt.say "\n"
prompt.say File.read(Rails.root.join('.env.production'))
prompt.say "\n"
prompt.ok 'It is also saved within this container so you can proceed with this wizard.'
end
prompt.say "\n" prompt.say "\n"
prompt.say 'Now that configuration is saved, the database schema must be loaded.' prompt.say 'Now that configuration is saved, the database schema must be loaded.'
prompt.warn 'If the database already exists, this will erase its contents.' prompt.warn 'If the database already exists, this will erase its contents.'

Loading…
Cancel
Save