You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
|
11 years ago
|
package org.telegram;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author Ruben Bermudez
|
||
|
|
* @version 1.0
|
||
|
|
* @brief Custom build vars FILL EVERYTHING CORRECTLY
|
||
|
|
* @date 20 of June of 2015
|
||
|
|
*/
|
||
|
|
public class BuildVars {
|
||
|
|
public static final Boolean debug = true;
|
||
|
|
public static final Boolean useWebHook = true;
|
||
|
|
public static final String BASEWEBHOOKURL = "http://YOUREXTERNALADDRES";
|
||
|
|
public static final String INTERNALWEBHOOKURL = "http://localhost";
|
||
|
|
|
||
|
|
public static final String OPENWEATHERAPIKEY = "<your-api-key>";
|
||
|
|
|
||
|
|
public static final String DirectionsApiKey = "<your-api-key>";
|
||
|
|
|
||
|
|
public static final String TRANSIFEXUSER = "<transifex-user>";
|
||
|
|
public static final String TRANSIFEXPASSWORD = "<transifex-password>";
|
||
|
|
|
||
|
|
public static final String pathToLogs = "./";
|
||
|
|
|
||
|
|
public static final String linkDB = "jdbc:mysql://localhost:3306/YOURDATABSENAME?useUnicode=true&characterEncoding=UTF-8";
|
||
|
|
public static final String controllerDB = "com.mysql.jdbc.Driver";
|
||
|
|
public static final String userDB = "<your-database-user>";
|
||
|
|
public static final String password = "<your-databas-user-password>";
|
||
|
|
}
|