This file contains hidden or 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 | |
# Customise the email and database credentials for the project to use | |
email_addr="my.email@gmail.com" | |
email_hash="GmailAppPassword" | |
mysql_pass="password" | |
# Do we want a local machine only server (localhost) | |
# or one available to a Local Area Network (LAN) via ip address | |
# or Fully Qualified Domain Name (FQDN), for public internet server - advanced user |
This file contains hidden or 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 | |
domain_idname="${1:-localhost}" | |
mysqlpassword="${2:-password}" | |
email_address="${3:-root@localhost}" | |
email_hashtag="${4:-password}" | |
git_repository="https://github.com/Inspirati/doctis.git" | |
sudoers_file="/etc/sudoers.d/34_install-doctis" | |
database="mariadb" |