forked from cody-greene/eslint-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env
32 lines (25 loc) · 1.01 KB
/
example.env
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
################################################################################
##
## Example project configuration
## Use this as a template to create your own ".env" file for local development
##
################################################################################
# Regular expression applied to all modified files
FILE_FILTER='\.(js|jsx)$'
# GitHub user name & personal access token (or password)
# Required scopes: ['repo']
GH_TOKEN=''
GH_USER='cody-greene'
# Minimum log level to emit, e.g. use 'info' to ignore trace/debug statements
# Should be one of: trace, debug, info, warn, error, fatal
LOG_LEVEL='info'
# Heroku & node-foreman will define this automatically
# PORT='5000'
# This is used to verify the source of any requests
# Copy this into the webhook configuration
# openssl rand -hex 20
SHARED_SECRET='160_BIT_KEY'
# Idle socket timeout during server shutdown
SHUTDOWN_SOCKET_IDLE='3000'
# The GitHub API requires a user-agent string
USER_AGENT='ESLintBot (github.com/cody-greene/eslint-bot)'