12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/bash
- set -e
- adduser --group huginn
- adduser --disabled-login --ingroup huginn --gecos 'Huginn' --no-create-home --home /app huginn
- passwd -d huginn
- git clone --depth 1 https://github.com/cantino/huginn /app
- chown -R huginn:huginn /app
- cd app
- sudo -u huginn -H mkdir -p tmp/pids tmp/cache tmp/sockets log
- chmod -R u+rwX log tmp
- export LC_ALL=en_US.UTF-8
- echo "gem 'sqlite3', '~> 1.3.11'" >> Gemfile
- sudo -u huginn -H RAILS_ENV=production APP_SECRET_TOKEN=secret DATABASE_ADAPTER=sqlite3 ON_HEROKU=true bundle install --without test development --path vendor/bundle -j 4
- sudo -u huginn -H RAILS_ENV=production APP_SECRET_TOKEN=secret DATABASE_ADAPTER=sqlite3 ON_HEROKU=true bundle exec rake assets:clean assets:precompile
- git checkout Gemfile
- sudo -u huginn -H ON_HEROKU=true DATABASE_ADAPTER=noop bundle install --without test development --path vendor/bundle
- 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
|