Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. ######################################################################
  2. # ___ _ __ _ #
  3. # | _ \___ _ _ __ _ __| |___ ___ _ ___ __ __ ___ _ _ / _(_)__ _ #
  4. # | _/ _ \ '_/ _` / _| / -_) / -_) ' \ V / / _/ _ \ ' \| _| / _` | #
  5. # |_| \___/_| \__,_\__|_\___| \___|_||_\_/ \__\___/_||_|_| |_\__, | #
  6. # |___/ #
  7. ######################################################################
  8.  
  9. ## REQUIRED PARAMETERS
  10. # Uncomment and remove starting space for any line you might need
  11.  
  12. ## PROVIDER
  13. # DISCORD_ENABLED=true
  14. # TLG_ENABLED=false
  15.  
  16. ## Discord or Telegram token array. Has to be in [ "square.brackets.and.quotes" ]
  17. DISCORD_TOKEN=["NTk5Mzg3ODk5MTMzMjk2NjQx.XSkd0g.Rz6-3z6oFN3aTmHU2mVOnO6V-BU"]
  18. # TLG_TOKEN=["400000002:AAhdsjl_alkrhjfsqlkjEQ"]
  19.  
  20. ## List of discord or telegram user id's that can register channels and run admin commands.
  21. ADMINS=["129065126786629632"]
  22. # TLG_ADMINS=["201234515"]
  23.  
  24. ## Below are optional environment variables to overwrite defaults.
  25. ## Environment variables are in all capitals,
  26. ## To use a value from this config file, uncomment the line and give it an appropriate value
  27.  
  28. ## Channel name to register with the `!poracle` or `/poracle` command, discord default 'general'
  29. REGISTER_CHANNEL=vip-bot
  30. # TLG_CHANNEL=
  31.  
  32. ## Role name that automatically registers or unregisters the user to !poracle
  33. # REGISTER_ROLE=
  34.  
  35. ## prefix to start Discord !commands with. Telegram commands must start with /
  36. PREFIX=!
  37.  
  38. ## Custom command names
  39.  
  40. # CMDPORACLE=
  41. # CMDAREA=
  42. # CMDBACKUP=
  43. # CMDCHANNEL=
  44. # CMDEGG=
  45. # CMDHELP=
  46. # CMDLODCATION=
  47. # CMDQUEST=
  48. # CMDRAID=
  49. # CMDRESTORE=
  50. # CMDSTART=
  51. # CMDSTOP=
  52. # CMDTRACK=
  53. # CMDTRACKED=
  54. # CMDUNREGISTER=
  55. # CMDUNTRACK=
  56. # CMDVERSION=
  57. # CMDWEBHOOK=
  58.  
  59. ## If discord bot should react to messages with the monster type (true | false)
  60. # TYPE_REACT=
  61.  
  62. ## Limit of messages any channel or user can receive within an amount of seconds
  63. # LIMIT_SEC=
  64. # LIMIT_MESSAGES=
  65.  
  66. ## Telegram specific
  67. # TLG_IMAGES=
  68. # TLG_LOCATION=
  69.  
  70. ## Custom color codes for {{ivColor}} example: ["#9D9D9D","#FFFFFF","#1EFF00","#0070DD","#A335EE","#FF8000"]
  71. # IV_COLORS=
  72.  
  73.  
  74. ## Database settings
  75. # DB_HOST=
  76. # DB_USER=
  77. # DB_PASSWORD=
  78. # DB_DATABASE=
  79. # DB_PORT=
  80. # DB_CONNECTION_LIMIT=
  81. # DB_CONNECTION_TIMEOUT=
  82.  
  83.  
  84. ## verbosity of console logs (debug | info | warning | error)
  85. LOG_LEVEL=debug
  86. # LOG_SIZE=
  87.  
  88. ## Webserver host / port
  89. HOST=0.0.0.0
  90. PORT=9015
  91.  
  92. ## Custom source to pull proto format images ( default: "https://raw.githubusercontent.com/KartulUdus/PoracleJS/master/src/util/images/" )
  93. ## telegram sticker url expects webp images ( default: "https://raw.githubusercontent.com/KartulUdus/PoracleJS/master/src/util/images/telegram/" )
  94. IMGURL=https://raw.githubusercontent.com/unseenmagik/sprites-1/optimized/
  95. # TLG_STICKER=
  96.  
  97. ## Max pokemon_id that can be tracked
  98. # MAX_POKEMON=
  99.  
  100. ## Minimum time left on pokemon to trigger alert
  101. # MIN_TTH=
  102.  
  103. ## List of IP addresses that can send POST webhooks to Poracle. Default=[] (all ips)
  104. # IP_WHITELIST=
  105.  
  106. ## List of IP addresses that can't send POST webhooks to Poracle. Default=[] (no ips)
  107. # IP_BLACKLIST=
  108.  
  109. ### Locale settings
  110. ## default: en-gb
  111. # TIME_FORMAT=
  112. ## default: LTS
  113. # TIME_STRING=
  114. ## default: %S %n
  115. # ADDR_FORMAT=
  116. ## one of ['en', 'de', 'fr', 'ja', 'ko', 'ru']
  117. # PORACLE_LANGUAGE
  118.  
  119.  
  120. ### Geocoding settings
  121. ## Geocoding provider and key (google | osm). osm geocoding does not require a key
  122. # GEO_PROVIDER=
  123. # GEO_KEY=
  124.  
  125. ## Provider of {{{staticMap}}} dts static map urls. (google | osm | mapbox). Please note 'osm' provider is a key from 'mapquest'
  126. # STATIC_PROVIDER=
  127. # STATIC_KEY=
  128.  
  129. ## Static map dimensions
  130. # MAP_WIDTH=
  131. # MAP_HEIGHT=
  132. # MAP_ZOOM=
  133. # MAP_TYPE=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement