forked from BurntSushi/nfldb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini.sample
44 lines (39 loc) · 1.14 KB
/
config.ini.sample
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
35
36
37
38
39
40
41
42
43
[pgsql]
# The time zone to use in the PostgreSQL session by default.
# You can see a list of available time zone names with the following query:
#
# select * from pg_timezone_names
#
# Here are some common ones:
#
# US/Alaska
# US/Samoa
# US/Hawaii
# US/Mountain
# US/Indiana-Starke
# US/Pacific
# US/Central
# US/Michigan
# US/Aleutian
# US/East-Indiana
# US/Arizona
# US/Eastern
# US/Pacific-New
#
# Datetimes are always stored as UTC, but this time zone setting
# can be used to change how datetimes are returned in SELECT queries.
timezone = US/Eastern
# The name of the PostgreSQL database containing NFL data.
database = nfldb
# The username and password for the database specified above.
# The user should have permission to add, delete and remove data.
# Also, the user should have permission to create/alter/drop tables,
# indexes and types.
user = nfldb
password = YOUR PASSWORD
# The host of the PostgreSQL server. When using a local database, this should
# be set to "localhost".
host = localhost
# The port that the PostgreSQL server is running on. It is set to the
# default port of 5432.
port = 5432