Guest User

Untitled

a guest
Apr 20th, 2018
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. .ENV
  2.  
  3. ## Uncomment the next line and set it to your local subnet
  4. #export LOCAL_SUBNET=192.168.1.1/24
  5.  
  6. export ASSET_HOST=moorlands.localdomain:3000
  7. export SECRET_KEY_BASE=2060ddcda9f7bb74c2eb81ae655451275f08768ee59d17c231ace095ea84701aae52a0f91442933618f82cb99679b78770aaba85f06fb2ab6329749c6e36391b
  8.  
  9. export SMTP_DOMAIN=
  10. export SMTP_USERNAME=
  11. export SMTP_PASSWORD=
  12. export SMTP_PORT=
  13. export SMTP_HOST=
  14.  
  15. export POSTMARK_API_KEY="86aa6ac6-5fa6-4a73-945a-b8a8740c9c7f"
  16.  
  17. ## Uncomment the next line and set to either 'smtp' or 'postmark'
  18. ## Ensure that whichever you select is sufficiently configured above
  19. export MAILER_DELIVERY_METHOD=postmark
  20.  
  21. export REGISTRATIONS_SUBDOMAIN="registrations"
  22. export VOLUNTEERS_SUBDOMAIN="volunteer"
  23. export DEFAULT_SUBDOMAIN="registrations"
  24. export DEFAULT_HOST="moorlands.localdomain:3000"
  25.  
  26. export DB_HOST=
  27. export DB_USER=
  28. export DB_PASS=
  29. export DB_NAME=
  30. export DB_PORT=
  31.  
  32.  
  33. ## -- Payment mode
  34. export PAYMENT_MODE="test"
  35.  
  36.  
  37. ## -- NCB merchant account publisher name
  38. export MERCHANT_PUBLISHER_NAME=""
  39.  
  40. .DIST
  41.  
  42. ## -- Uncomment the next line and set it to your local subnet
  43. #export LOCAL_SUBNET=192.168.1.1/24
  44.  
  45. ## -- Change this to match the IP/hostname of your app server
  46. export ASSET_HOST=htp://localhost:3000
  47.  
  48. export REGISTRATIONS_SUBDOMAIN="registrations"
  49. export VOLUNTEERS_SUBDOMAIN="volunteer"
  50. export DEFAULT_SUBDOMAIN="registrations"
  51. export DEFAULT_HOST="localhost:3000"
  52.  
  53. export SECRET_KEY_BASE=2060ddcda9f7bb74c2eb81ae655451275f08768ee59d17c231ace095ea84701aae52a0f91442933618f82cb99679b78770aaba85f06fb2ab6329749c6e36391b
  54.  
  55. ## -- Begin: SMTP configuration
  56.  
  57. export SMTP_DOMAIN=
  58. export SMTP_USERNAME=
  59. export SMTP_PASSWORD=
  60. export SMTP_PORT=
  61. export SMTP_HOST=
  62.  
  63. ## -- End: SMTP configuration
  64.  
  65.  
  66. ## -- Begin: Postmark configuration
  67.  
  68. export POSTMARK_API_KEY="86aa6ac6-5fa6-4a73-945a-b8a8740c9c7f"
  69.  
  70. ## -- End: Postmark configuration
  71.  
  72.  
  73.  
  74. ## -- IMPORTANT! --
  75. ## -- Uncomment the next line and set to either 'smtp' or 'postmark'
  76. ## -- Ensure that whichever you select is sufficiently configured above
  77. #export MAILER_DELIVERY_METHOD=smtp
  78.  
  79.  
  80.  
  81. ## -- Begin: Database configuration
  82.  
  83. export DB_HOST=
  84. export DB_USER=
  85. export DB_PASS=
  86. export DB_NAME=
  87. export DB_PORT=
  88.  
  89. ## -- End: Database configuration
  90.  
  91.  
  92. ## -- Payment mode
  93. export PAYMENT_MODE="test"
  94.  
  95.  
  96. ## -- NCB merchant account publisher name
  97. export MERCHANT_PUBLISHER_NAME=""
Add Comment
Please, Sign In to add comment