Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
1,521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.86 KB | None | 0 0
  1. /*
  2. |--------------------------------------------------------------------------
  3. | Application Configuration
  4. |--------------------------------------------------------------------------
  5. |
  6. | This are the basic information of the core application.
  7. | Be careful while editing and make sure you know what you are doing.
  8. |
  9. */
  10. APP_NAME=CryptEx
  11. APP_ENV=production
  12. APP_REDIRECT_HTTPS=false
  13. APP_KEY=
  14. APP_DEBUG=false
  15. APP_TIMEZONE=UTC
  16. APP_LOCALE=en
  17. APP_URL=http://localhost
  18.  
  19. /*
  20. |--------------------------------------------------------------------------
  21. | HTML Meta Description
  22. |--------------------------------------------------------------------------
  23. */
  24. APP_DESCRIPTION=
  25. APP_KEYWORDS=
  26.  
  27. /*
  28. |--------------------------------------------------------------------------
  29. | Logo's & Icons
  30. |--------------------------------------------------------------------------
  31. */
  32. APP_LOGO_ICON=
  33. APP_SHORTCUT_ICON=
  34. APP_LOGO_BRAND=
  35.  
  36. LOG_CHANNEL=stack
  37.  
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Database Configuration
  41. |--------------------------------------------------------------------------
  42. |
  43. | This is required by the application. Create a database
  44. | and enter its details here.
  45. |
  46. */
  47. DB_CONNECTION=mysql
  48. DB_HOST=localhost
  49. DB_PORT=3306
  50. DB_DATABASE=
  51. DB_USERNAME=
  52. DB_PASSWORD=
  53.  
  54. /*
  55. |--------------------------------------------------------------------------
  56. | Application Drivers
  57. |--------------------------------------------------------------------------
  58. |
  59. | This is where you specify the core application's drivers. It is
  60. | most preferable you leave this untouched, unless ofcourse you know
  61. | what you are doing.
  62. |
  63. */
  64. BROADCAST_DRIVER=pusher
  65. CACHE_DRIVER=file
  66. SESSION_DRIVER=file
  67. SESSION_LIFETIME=120
  68. QUEUE_DRIVER=sync
  69.  
  70. REDIS_HOST=127.0.0.1
  71. REDIS_PASSWORD=null
  72. REDIS_PORT=6379
  73.  
  74. /*
  75. |--------------------------------------------------------------------------
  76. | Mail Configuration
  77. |--------------------------------------------------------------------------
  78. |
  79. | This is utilized by the application to process & send emails Set your
  80. | preferred mail driver, obtain an api key where required and set its
  81. | values here.
  82. |
  83. */
  84. MAIL_DRIVER=sendmail
  85. MAIL_HOST=smtp.mailtrap.io
  86. MAIL_PORT=2525
  87. MAIL_USERNAME=null
  88. MAIL_PASSWORD=null
  89. MAIL_ENCRYPTION=null
  90. MAIL_FROM_ADDRESS="noreply@mail.com"
  91. MAIL_FROM_NAME="Mail Service"
  92.  
  93. LOG_SLACK_WEBHOOK_URL=
  94.  
  95. #--------------------------------------------------------------------------
  96. # Laravel Mix Variable
  97. #--------------------------------------------------------------------------
  98. MIX_BROADCAST_DRIVER="${BROADCAST_DRIVER}"
  99.  
  100. MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
  101. MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
  102.  
  103. #--------------------------------------------------------------------------
  104. # Currency Settings
  105. #--------------------------------------------------------------------------
  106. SET_DEFAULT_CURRENCY=USD
  107.  
  108. # Amounts should be in dollar
  109. SET_MIN_OFFER_AMOUNT=1
  110. SET_MAX_OFFER_AMOUNT=10000
  111.  
  112. /*
  113. |--------------------------------------------------------------------------
  114. | Transaction Setiings
  115. |--------------------------------------------------------------------------
  116. |
  117. | You should set the transaction prefrence below which is used to calculate
  118. | the miners fee.
  119. |
  120. */
  121. SET_TX_NUM_BLOCKS=7
  122. SET_MIN_TX_CONFIRMATIONS=3
  123.  
  124. /*
  125. |--------------------------------------------------------------------------
  126. | Coin Setiings
  127. |--------------------------------------------------------------------------
  128. |
  129. | This are parameters used to setup transaction based on coin. For example
  130. | Trade fee is the percentage of trade amount to be charged, while Locked
  131. | balance is to ensure successful transaction at all times.
  132. */
  133.  
  134. #--------------------------------------------------------------------------
  135. # Bitcoin
  136. #--------------------------------------------------------------------------
  137. SET_BTC_TRADE_FEE=1
  138. SET_BTC_PROFIT_PER_WALLET_LIMIT=10000000
  139. SET_BTC_LOCKED_BALANCE=0.0001
  140.  
  141. #--------------------------------------------------------------------------
  142. # Litecoin
  143. #--------------------------------------------------------------------------
  144. SET_LTC_TRADE_FEE=1
  145. SET_LTC_PROFIT_PER_WALLET_LIMIT=10000000
  146. SET_LTC_LOCKED_BALANCE=0.0001
  147.  
  148. #--------------------------------------------------------------------------
  149. # Dash
  150. #--------------------------------------------------------------------------
  151. SET_DASH_TRADE_FEE=1
  152. SET_DASH_PROFIT_PER_WALLET_LIMIT=10000000
  153. SET_DASH_LOCKED_BALANCE=0.0001
  154.  
  155. /*
  156. |--------------------------------------------------------------------------
  157. | Third Party Services
  158. |--------------------------------------------------------------------------
  159. |
  160. | This is the configuration of all third party services used
  161. | within the app. Refer to the docmentation, on how to
  162. | obtian API credentials for each services
  163. |
  164. */
  165.  
  166. #--------------------------------------------------------------------------
  167. # Mailgun Keys
  168. # Link: https://mailgun.com/
  169. #--------------------------------------------------------------------------
  170. MAILGUN_DOMAIN=
  171. MAILGUN_SECRET=
  172.  
  173. #--------------------------------------------------------------------------
  174. # SparkPost Keys
  175. # Link: https://sparkpost.com/
  176. #--------------------------------------------------------------------------
  177. SPARKPOST_SECRET=
  178.  
  179. #--------------------------------------------------------------------------
  180. # Amazon SES Keys
  181. # Link: https://aws.amazon.com/
  182. #--------------------------------------------------------------------------
  183. SES_KEY=
  184. SES_SECRET=
  185. SES_REGION=us-east-1
  186.  
  187. #--------------------------------------------------------------------------
  188. # Pusher Api Keys
  189. # Link: https://pusher.com/
  190. #--------------------------------------------------------------------------
  191. PUSHER_APP_ID=
  192. PUSHER_APP_KEY=
  193. PUSHER_APP_SECRET=
  194. PUSHER_APP_CLUSTER=eu
  195.  
  196. #--------------------------------------------------------------------------
  197. # Google Recaptcha API Keys (Type: v2 or invisible)
  198. # Link: https://www.google.com/recaptcha/admin#list
  199. #--------------------------------------------------------------------------
  200. NOCAPTCHA_ENABLE=false
  201. NOCAPTCHA_SECRET=
  202. NOCAPTCHA_SITEKEY=
  203. NOCAPTCHA_TYPE=invisible
  204.  
  205. SMS_PROVIDER=africastalking
  206.  
  207. #--------------------------------------------------------------------------
  208. # Nexmo SMS Api Keys (PROVIDER: nexmo)
  209. # Link: https://dashboard.nexmo.com/
  210. #--------------------------------------------------------------------------
  211. NEXMO_KEY=
  212. NEXMO_SECRET=
  213. NEXMO_PHONE=
  214.  
  215. #--------------------------------------------------------------------------
  216. # Africa's Talking SMS Api Keys (PROVIDER: africastalking)
  217. # Link: https://dashboard.nexmo.com/
  218. #--------------------------------------------------------------------------
  219. AFRICASTALKING_USERNAME=
  220. AFRICASTALKING_KEY=
  221. AFRICASTALKING_FROM=
  222. AFRICASTALKING_ENQUEUE=true
  223.  
  224. #--------------------------------------------------------------------------
  225. # Twilio SMS Api Keys (PROVIDER: twilio)
  226. # Link: http://www.twilio.com
  227. #--------------------------------------------------------------------------
  228. TWILIO_TOKEN=
  229. TWILIO_ID=
  230. TWILIO_NUMBER=
  231.  
  232. #--------------------------------------------------------------------------
  233. # Msg91 SMS Api Keys (PROVIDER: msg91)
  234. # Link: http://www.msg91.com
  235. #--------------------------------------------------------------------------
  236. MSG91_KEY=
  237. MSG91_SENDER=
  238. MSG91_COUNTRY=
  239. MSG91_ROUTE=
  240.  
  241. #--------------------------------------------------------------------------
  242. # Block Cypher Token (Env: test or prod)
  243. # Link: https://accounts.blockcypher.com/tokens
  244. #--------------------------------------------------------------------------
  245. BITGO_ENV=test
  246. BITGO_TOKEN=
  247. BITGO_HOST=
  248. BITGO_PORT=
  249.  
  250. #--------------------------------------------------------------------------
  251. # OpenExchangeRates Api Keys
  252. # (https://openexchangerates.org/account/app-ids)
  253. #--------------------------------------------------------------------------
  254. OER_KEY=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement