blob: aff6f2ce020f4bbef837433c3eb9da305e9468b4 [file] [log] [blame]
################################################################################
# Copyright 2017 General Electric Company
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
################################################################################
#!/usr/bin/env bash
# This script will run ACS against a local PostgreSQL database. To setup the database:
# 1. Install PostgreSQL
# 2. Open psql
# 3. execute: 'create database acs;'
# 4. execute: 'create user postgres;'
# 5. execute: 'grant all privileges on database acs to postgres;'
if [[ -z "$SPRING_PROFILES_ACTIVE" ]]; then
export SPRING_PROFILES_ACTIVE='envDbConfig,public,simple-cache'
fi
export DB_DRIVER_CLASS_NAME='org.postgresql.Driver'
export DB_URL='jdbc:postgresql:acs'
export DB_USERNAME='postgres'
export DB_PASSWORD='postgres'
export DIR=$( dirname "$( python -c "import os; print os.path.abspath('${BASH_SOURCE[0]}')" )" )
source "${DIR}/start-acs.sh" "$@"