-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathconfig.js
More file actions
21 lines (15 loc) · 728 Bytes
/
config.js
File metadata and controls
21 lines (15 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require('dotenv').config()
const API_KEY = process.env.API_KEY;
const width = 500; /* width of the window */
const height = 800; /* height of the window */
const horizontalGap = 0; /* gap from left or right of the screen */
const verticalGap = 0; /* gap from top or bottom of the screen */
const horizontalPosition = 'right' /* value must be 'center', 'left' or 'right' : controls position of window on screen */
const verticalPosition = 'top' /* value must be 'center', 'top' or 'bottom' : controls position of window on screen */
// NOTE : gaps would be ignored if window is at center
module.exports = {
width, height,
horizontalGap, verticalGap,
horizontalPosition, verticalPosition,
API_KEY
}