2018-09-12 21:52:33 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
#-- copyright
|
|
|
|
|
# OpenProject is a project management system.
|
2024-07-30 13:42:36 +02:00
|
|
|
# Copyright (C) the OpenProject GmbH
|
2018-09-12 21:52:33 +02:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
|
|
|
#
|
|
|
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
|
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
#
|
|
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
|
#++
|
|
|
|
|
|
2018-10-02 09:56:10 +02:00
|
|
|
set -e
|
|
|
|
|
|
2018-09-12 21:52:33 +02:00
|
|
|
run() {
|
|
|
|
|
echo $1;
|
|
|
|
|
eval $1;
|
|
|
|
|
|
|
|
|
|
echo $2;
|
|
|
|
|
eval $2;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 09:03:04 +02:00
|
|
|
run "bundle exec rake db:create db:migrate"
|
2018-09-12 21:52:33 +02:00
|
|
|
|
2021-02-02 15:33:33 +01:00
|
|
|
run "cd frontend; npm install ; cd -"
|
2018-09-12 21:52:33 +02:00
|
|
|
|
2019-06-17 11:31:06 +02:00
|
|
|
run "bundle exec rake assets:precompile assets:clean"
|
2018-09-12 21:52:33 +02:00
|
|
|
|
|
|
|
|
run "cp -rp config/frontend_assets.manifest.json public/assets/frontend_assets.manifest.json"
|
2020-09-22 11:18:30 +02:00
|
|
|
|