Skip to content

Instantly share code, notes, and snippets.

@nedSaf
Created October 27, 2015 14:12
Show Gist options
  • Save nedSaf/4cba1005de3f85c9fab2 to your computer and use it in GitHub Desktop.
Save nedSaf/4cba1005de3f85c9fab2 to your computer and use it in GitHub Desktop.
Probo config file.
#!/bin/bash
#########################################################################################
#
# Configuration used in the different scripts.
#
# Copy this file in the same directory, the filename of the copy should be "config.sh".
#
#########################################################################################
# The profile used to install the platform.
PROFILE_NAME="icenter"
# The human name of the install profile
PROFILE_TITLE="iCenter"
# Modify the URL below to match your local domain the site will be accessible on.
BASE_DOMAIN_URL="http://localhost:80"
# Modify the login details below to be the desired
# login details for the Drupal Administrator account.
ADMIN_USERNAME="admin"
ADMIN_PASSWORD="admin"
ADMIN_EMAIL="admin@example.com"
# Modify the MySQL settings below so they will match your own.
MYSQL_USERNAME="root"
MYSQL_PASSWORD="strongpassword"
MYSQL_HOSTNAME="localhost"
MYSQL_DB_NAME="icenter"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment