forked from VulcanJS/vulcan-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.development
28 lines (20 loc) · 1.13 KB
/
.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
27
28
# If token is less than 32 char you'll get "Password too short error"!
TOKEN_SECRET="this-is-a-token-secret-with-at-least-32-chars"
NEXT_PUBLIC_GRAPHQL_URI="http://localhost:3000/api/graphql"
# Set to 1 when relying on a cross-domain API (provided by Vulcan Express, Vulcan Meteor backend or another Vulcan Next app for instance)
# NEXT_PUBLIC_CROSS_DOMAIN_GRAPHQL_URI=1
APOLLO_SERVER_CORS_WHITELIST="http://localhost:3000"
ADMIN_EMAIL="[email protected]"
# if you have changed ADMIN_INITIAL_PASSWORD here in .env.development, please add the
# value in your local .env.test.local (it's safe, it's not tracked by git) so Cypress can work correctly
ADMIN_INITIAL_PASSWORD="vulcan_is_cool"
MONGO_URI="mongodb+srv://johnDoe:[email protected]/sample_restaurants?retryWrites=true&w=majority"
# MONGO_URI="mongodb://localhost:27017/vulcan-next-app"
# Replace with your own token, see https://www.chromatic.com
CHROMATIC_PROJECT_TOKEN=
# Replace with your SMTP server configuration
MAIL_FROM="My App <[email protected]>",
SMTP_HOST=
SMTP_PORT=
SMTP_SECURE=
NEXT_PUBLIC_NODE_ENV=development