51 lines
2.7 KiB
Bash
51 lines
2.7 KiB
Bash
BASIC_AUTH_USERNAME=username
|
|
BASIC_AUTH_PASSWORD=password
|
|
|
|
ORD_API_URL=Url for ORD API endpoints
|
|
|
|
MAX_BACK_TO_BACK_DIFFERENCE=Time in minutes
|
|
EARLIEST_UNLOCK=Time in minutes
|
|
|
|
UI_TIMEZONE=Timezone for user interface | https://en.wikipedia.org/wiki/List_of_tz_database_time_zones | example : America/Los_Angeles
|
|
|
|
UNSCHEDULED_USE_INITIAL_TIME_SEGMENT_LENGTH=Time in minutes when first unscheduled use charge will be applied
|
|
UNSCHEDULED_USE_TIME_RESOLUTION=Time in minutes
|
|
UNSCHEDULED_USE_CHARGE_PRICE=Charge price
|
|
|
|
UNLOCK_0=Price for unlocked door, first month
|
|
UNLOCK_1=Price for unlocked door, second month
|
|
UNLOCK_2=Price for unlocked door, third month
|
|
UNLOCK_3=Price for unlocked door, fourth month
|
|
UNLOCK_4=Price for unlocked door, fifth month
|
|
UNLOCK_5=Price for unlocked door, sixth month
|
|
|
|
UNLOCK_STREAK_REPAIR_AFTER=Number of months without incidents to reset user incident level
|
|
|
|
BOOKING_CHANGE_PERCENTAGE_CHARGE=Percentage of hourly reate to apply for cancellation-like charges
|
|
|
|
CHARGE_BOOKING_CHANGE_UNDER_TIME=Time to booking start when booking change will be charged (in minutes) [Default is 1430 = 24*60 - 10; that is 24hrs - 10 minutes for booking change tracking cycle]
|
|
ALLOWED_BOOKING_CANCELLATION_TIME=Time from creation (in minutes) in which cancellation is not charged
|
|
|
|
SEQUELIZE_LOGGING=0 - false, 1 - true (console logging)
|
|
|
|
DISCOUNT_LEVEL_1_HOURS=Hours requred to apply DISCOUNT_LEVEL_1_PERCENTAGE discount
|
|
DISCOUNT_LEVEL_1_PERCENTAGE=Discount to apply in percentage, if DISCOUNT_LEVEL_1_HOURS of billable hours is booked
|
|
DISCOUNT_LEVEL_2_HOURS=Hours requred to apply DISCOUNT_LEVEL_2_PERCENTAGE discount
|
|
DISCOUNT_LEVEL_2_PERCENTAGE=Discount to apply in percentage, if DISCOUNT_LEVEL_2_HOURS of billable hours is booked
|
|
DISCOUNT_PLANS=Plan names for which discount is available. Comma-separated
|
|
|
|
ORD_OAUTH_CLIENT_ID=Client ID for this app, created in ORD; Used to obtain OAUTH token
|
|
ORD_OAUTH_CLIENT_SECRET=Client secret for this app; Used to obtain OAUTH token
|
|
ORD_OAUTH_URL=https://identity.officernd.com/oauth/token
|
|
|
|
CUSTOM_FEES_PREFIXES=Array of prefixes to recognize manually added fees. Comma-separated
|
|
|
|
ALLOW_SENDING_FEES_FOR_CURRENT_AND_FUTURE_MONTHS=0 - false => Sending fees is disabled for current and future months, 1 - true => Sending fees is never disabled
|
|
|
|
TRIM_DLOCK_NAMES_LENGTH=Length of names in DLOCK files that will be taken to compare with ORD member names
|
|
|
|
#More about pool option : http://docs.sequelizejs.com/class/lib/sequelize.js~Sequelize.html
|
|
DB_POOL_MAX_CONNECTIONS=Maximum number of connection in pool (ex. 18)
|
|
DB_POOL_ACQUIRE=The maximum time, in milliseconds, that pool will try to get connection before throwing error (ex. 120000)
|
|
DB_POOL_EVICT=The time interval, in milliseconds, after which sequelize-pool will remove idle connections. (ex. 10000)
|