Skip to content
Snippets Groups Projects

Updates to implement finish, process MultiSmartData for v1.2 (Mobile)...

Closed Guilherme Arthur Gerônimo requested to merge master into prod
1 file
+ 6
7
Compare changes
  • Side-by-side
  • Inline
@@ -13,21 +13,20 @@ require_once './Console/CommandLine/Command.php';
final class Config
{
const MYSQL_SEVERNAME = 'localhost';
const MYSQL_PORT = 3306;
const MYSQL_DBNAME = 'smartdata_v1';
const MYSQL_USERNAME = 'smartdata';
const MYSQL_PASSWORD = '1ol31lSh010mG9wY';
const MYSQL_USERNAME = 'username';
const MYSQL_PASSWORD = 'password';
const MYSQL_SUPERUSER = 'smartdata_admin';
const MYSQL_SUPERPASS = '6wg5fbB5fOIuzXcW';
const MYSQL_SUPERUSER = 'username';
const MYSQL_SUPERPASS = 'password';
const CASSANDRA_SERVERNAME = 'localhost';
const CASSANDRA_PORT = 9042;
const CASSANDRA_SUPERUSER = 'cassandra';
const CASSANDRA_SUPERPASS = 'K#dM841-lwx';
const CASSANDRA_SUPERUSER = 'username';
const CASSANDRA_SUPERPASS = 'password';
const CASSANDRA_KEYSPACE = 'smartdata_v1';
const CASSANDRA_MAX_ROW_SIZE = 2000000000; //%(Two billion - The max is 2^31)
Loading