mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
302 B
Bash
Executable file
13 lines
302 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
# shellcheck disable=SC1091
|
|
source /etc/profile.d/rvm.sh # ensure RVM is loaded
|
|
|
|
bundle config set --local deployment 'true'
|
|
bundle install -j "$(nproc)"
|
|
pnpm install
|
|
bundle exec ruby .gitlab/configure_environment.rb
|
|
bundle exec rake zammad:db:init
|