Created
October 27, 2015 14:12
-
-
Save nedSaf/4cba1005de3f85c9fab2 to your computer and use it in GitHub Desktop.
Probo config file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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="[email protected]" | |
# 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