setup 1.4KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/bin/bash
  2. set -e
  3. # add a huginn group and user
  4. adduser --group huginn
  5. adduser --disabled-login --ingroup huginn --gecos 'Huginn' --no-create-home --home /app huginn
  6. passwd -d huginn
  7. # Shallow clone the huginn project repo
  8. git clone --depth 1 https://github.com/cantino/huginn /app
  9. # Change the ownership to huginn
  10. chown -R huginn:huginn /app
  11. cd app
  12. # create required tmp and log directories
  13. sudo -u huginn -H mkdir -p tmp/pids tmp/cache tmp/sockets log
  14. chmod -R u+rwX log tmp
  15. export LC_ALL=en_US.UTF-8
  16. # HACK: We need a database connection to precompile the assets, use sqlite for that
  17. echo "gem 'sqlite3', '~> 1.3.11'" >> Gemfile
  18. 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
  19. sudo -u huginn -H RAILS_ENV=production APP_SECRET_TOKEN=secret DATABASE_ADAPTER=sqlite3 ON_HEROKU=true bundle exec rake assets:clean assets:precompile
  20. git checkout Gemfile
  21. # Bundle again to get rid of the sqlite3 gem
  22. sudo -u huginn -H ON_HEROKU=true DATABASE_ADAPTER=noop bundle install --without test development --path vendor/bundle
  23. # Configure the unicorn server
  24. mv config/unicorn.rb.example config/unicorn.rb
  25. sed -ri 's/^listen .*$/listen ENV["PORT"]/' config/unicorn.rb
  26. sed -ri 's/^stderr_path.*$//' config/unicorn.rb
  27. sed -ri 's/^stdout_path.*$//' config/unicorn.rb