DEV: Remove unused pkgr.io config files (#8514)

This commit is contained in:
David Taylor 2019-12-10 11:20:26 +00:00 committed by GitHub
parent 47731175f4
commit 7891da7848
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 18 deletions

View File

@ -1 +0,0 @@
before_precompile: ./packaging/debian/setup.sh

View File

@ -1,17 +0,0 @@
#!/bin/sh
# This script sets up the required config files before buildpack compilation.
#
# It also launches a postgresql server and a redis server, otherwise some rake
# tasks can't be completed.
set -e
# Not everyone chooses to run discourse behind Apache or Nginx.
cat >> config/environments/production.rb <<EOF
Discourse::Application.configure do
config.serve_static_assets = true
end
EOF
sudo service postgresql start
sudo service redis-server start