-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.development
26 lines (24 loc) · 962 Bytes
/
.env.development
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# ==============================================================================
# This is an example environment configuration file. You can create your own
# .env implementation or pass them via the CLI.
#
# You could also decide to supply some of your environment variables from a .env
# file, and others via the CLI. This allows you to easily store "safe"
# environment variables within this file, and then manage your more sensitive
# environment variables seperately.
# ==============================================================================
#MONGODB_USER = DBuser
#MONGODB_PASS = DBpass
#MONGODB_HOST = localhost
#MONGODB_PORT = 27000
NODE_ENV = 'dev'
NODE_PLATFORM = 'server'
# NOTE: accessible on LAN, unlike 'localhost'
HOST_NAME = '127.0.0.1'
PORT = 3000
SSL = FALSE
# SSL_KEY = '~/ssl/florian.devs.skylo.io.key'
# SSL_CRT = '~/ssl/florian.devs.skylo.io.crt'
GRAPHQL_REST = '/'
# GRAPHQL_EXPLORE = '/explorer'
GRAPHQL_WS = '/subscriptions'