123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #!/bin/bash
- set -e
- cd /app
- export LC_ALL=en_US.UTF-8
- # Ensure the huginn user has access to the required directories
- sudo -u huginn -H mkdir -p tmp/pids tmp/cache tmp/sockets log
- sudo -u huginn -H touch log/production.log
- # Get rid of annoying "fatal: Not a git repository (or any of the parent directories): .git" messages
- sudo -u huginn -H git init
- # HACK: We need a database connection to precompile the assets, use sqlite for that
- cp Gemfile Gemfile.bak
- echo "gem 'sqlite3', '~> 1.3.11'" >> /app/Gemfile
- RAILS_ENV=production APP_SECRET_TOKEN=secret DATABASE_ADAPTER=sqlite3 ON_HEROKU=true bundle install --without test development --path vendor/bundle -j 4
- RAILS_ENV=production APP_SECRET_TOKEN=secret DATABASE_ADAPTER=sqlite3 ON_HEROKU=true bundle exec rake assets:clean assets:precompile
- # Bundle again to get rid of the sqlite3 gem
- cp Gemfile.bak Gemfile
- RAILS_ENV=production APP_SECRET_TOKEN=secret DATABASE_ADAPTER=sqlite3 ON_HEROKU=true bundle install --without test development --path vendor/bundle -j 4
- chown huginn:huginn Gemfile.lock
- # Configure the unicorn server
- mv config/unicorn.rb.example config/unicorn.rb
- sed -ri 's/^listen .*$/listen ENV["PORT"]/' config/unicorn.rb
- sed -ri 's/^stderr_path.*$//' config/unicorn.rb
- sed -ri 's/^stdout_path.*$//' config/unicorn.rb
- # Add ENV variables to .env.example which are not present in it but usable
- cat >> /app/.env.example <<EOF
- ASSET_HOST=
- DEFAULT_SCENARIO_FILE=
- RAILS_SERVE_STATIC_FILES=
- SEED_EMAIL=
- SEED_PASSWORD=
- SEED_USERNAME=
- SMTP_OPENSSL_CA_FILE=
- SMTP_OPENSSL_CA_PATH=
- SMTP_OPENSSL_VERIFY_MODE=
- EOF
|