mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-18 11:30:35 +01:00
1762f16344
* Adds drone tasks to Execute UTs on Aurora and Exodus * Adds a drone task to Migrate SQL and Perform the SQL UT on Runtime * Changes the SQL UT to respect the config.sql_enabled setting and use that sql connection * Changes the default config.sql_enabled state to 0, so uncommenting SQL_ENABLED has a actual effect * Moves a number of UT tests into a helper script (code_check.sh) * Updates the way the RUST_G dll/so is located * Adds a check to load_databases to verify that sql is enabled * Adds a check to establish_db_connection to verify that sql is enabled * Adds spearate config files used during the UTs (which hold the UT db connection info and enable/disable the db epending on the UT)
23 lines
583 B
Plaintext
23 lines
583 B
Plaintext
# MySQL Connection Configuration
|
|
|
|
# Server the MySQL database can be found at
|
|
# Examples: localhost, 200.135.5.43, www.mysqldb.com, etc.
|
|
ADDRESS localhost
|
|
|
|
# MySQL server port (default is 3306)
|
|
PORT 3306
|
|
|
|
# Database the population, death, karma, etc. tables may be found in
|
|
DATABASE tgstation
|
|
|
|
# Username/Login used to access the database
|
|
LOGIN mylogin
|
|
|
|
# Password used to access the database
|
|
PASSWORD mypassword
|
|
|
|
# The following information is for feedback tracking via the blackbox server
|
|
|
|
# Track population and death statistics
|
|
# Comment this out to disable
|
|
#ENABLE_STAT_TRACKING |