-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathConstants.cs
34 lines (30 loc) · 1.02 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TecEnergyQuandl.Utils
{
public class Constants
{
public static string API_KEY = "YOUR_API_KEY";
public static string DATABASES_URL = "https://www.quandl.com/api/v3/databases.json";
// Postgres stuff
public static string USER = "postgres";
public static string PASSWORD = "postgres";
public static string BASE_CONNECTION_STRING = "Host=localhost;" +
"Username=" + USER + ";" +
"Password=" + PASSWORD + ";";
public static string CONNECTION_STRING = BASE_CONNECTION_STRING + "Database=quandl";
public static string[] DATATABLES = {
"ZACKS/EB",
"ZACKS/MT",
"ZACKS/FC",
"ZACKS/FR",
"ZACKS/MKTV",
"ZACKS/SHRS",
"ZACKS/HDM",
"ZACKS/CP"
};
}
}