Advertisement
zdenny

ENV File

May 22nd, 2023
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. # Your Meilisearch master key
  2. # Find out more here: https://docs.meilisearch.com/learn/getting_started/quick_start.html#securing-meilisearch
  3. MEILI_MASTER_KEY=lots_of_long_characters
  4.  
  5.  
  6. # Base URL of the application
  7. # You should update this value to the one you are using (ex: http://192.168.100.100, https://my-personal-bar.com)
  8. # In this case it's the URL and port that is exposed in webserver service
  9. # The value MUST be without trailing slash
  10. BASE_URL=https://saltrim.MyDomain.com
  11.  
  12. # Meilisearch server instance URL, change if you are using different host from base url, otherwise leave as default
  13. MEILISEARCH_URL=${BASE_URL}/search
  14.  
  15. # Bar Assistant server instance URL, change if you are using different host from base url, otherwise leave as default
  16. API_URL=${BASE_URL}/bar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement