18cda6bda9b4076f7e9c3cf97068af5fb85ae721
[vid.git] / vid-automation / src / main / java / vid / automation / test / utils / DB_CONFIG.java
1 package vid.automation.test.utils;
2
3 public class DB_CONFIG {
4     public static String url = String.format("jdbc:mariadb://%s:%d/vid_portal",
5             System.getProperty("DB_HOST", System.getProperty("VID_HOST", "127.0.0.1" )),
6             Integer.valueOf(System.getProperty("DB_PORT", "3306"))
7     );
8     public static String username = "euser";
9     public static String password = "euser";
10 }