Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@benclarkk
Created October 15, 2019 18:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benclarkk/0795888dd5361dee7e9913aeb8b34ada to your computer and use it in GitHub Desktop.
Save benclarkk/0795888dd5361dee7e9913aeb8b34ada to your computer and use it in GitHub Desktop.
# The environment the app is running in, either production, staging or development
NODE_ENV=development
# The URL used to interact with the WebSocket server running on @cryb/api
API_WS_URL="ws://ip:4000"
# The URL used to interact with the WebSocket server running on @cryb/aperture
APERTURE_WS_URL="ws://localhost:9001"
# The URL used to interact with the REST API running on @cryb/api
API_BASE_URL="http://ip:4000"
# The URL that @cryb/web is being hosted on. Locally, this would be 'http://localhost:3000'
WEB_BASE_URL="http://localhost:3000"
# The domain used while setting cookies. Locally, this would be 'localhost'. In production, this would be '.example.com'
COOKIE_DOMAIN="ip"
# Nuxt.js Defaults
HOST=0.0.0.0
NUXT_PORT=3000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment