mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 04:14:04 +00:00
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
# Install dependencies only for Docker.
|
|
[[ ! -e /.dockerenv ]] && exit 0
|
|
set -xe
|
|
|
|
# Update packages and install composer and PHP dependencies.
|
|
apt-get update -yqq
|
|
apt-get install git libgd-dev libcurl4-gnutls-dev libicu-dev libmcrypt-dev libvpx-dev libjpeg-dev libpng-dev libxpm-dev zlib1g-dev libfreetype6-dev libxml2-dev libexpat1-dev libbz2-dev libgmp3-dev libldap2-dev unixodbc-dev libpq-dev libsqlite3-dev libaspell-dev libsnmp-dev libpcre3-dev libtidy-dev -yqq
|
|
|
|
# Compile PHP, include these extensions.
|
|
docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
|
|
docker-php-ext-install mbstring pdo_mysql curl json intl gd xml zip bz2 opcache
|
|
|
|
# Install Composer and project dependencies.
|
|
curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
composer install
|
|
|
|
# Copy over testing configuration.
|
|
cp .env.testing .env
|
|
|
|
# Install xdebug
|
|
#pecl install xdebug && docker-php-ext-enable xdebug
|
|
|
|
# Generate an application key. Re-cache.
|
|
php artisan key:generate
|
|
php artisan jwt:secret
|
|
php artisan config:cache
|
|
php artisan config:clear
|
|
# php artisan optimize // remove after laravel 5.6
|
|
|
|
# Run database migrations with seeder
|
|
php artisan migrate:refresh --seed
|
|
|
|
|