generated from mirego/elixir-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.env.test
30 lines (27 loc) · 1.56 KB
/
.env.test
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
29
30
# -----------------------------------------------------------------------------
# This file contains all the environment variables needed by the test suite.
# It is checked into version control so all developers can share it and use it
# as a base to build their own `.env.test.local` file.
#
# Only variables required by the test suite should be stored in here, other
# variables should be mocked in the suite itself.
# -----------------------------------------------------------------------------
# Server configuration
CANONICAL_URL=http://localhost:4001
CORS_ALLOWED_ORIGINS=*
DEBUG_ERRORS=true
FORCE_SSL=false
PORT=4001
SECRET_KEY_BASE=G0ieeRljoXGzSDPRrYc2q4ADyNHCwxNOkw7YpPNMa+JgP9iGgJKT4K96Bw/Mf/pd
SESSION_KEY=phoenix_channel_workshop
SESSION_SIGNING_SALT=qh+vmMHsOqcjKF3TSSIsghwt2go48m2+IQ+kMTOB3BrSysSr7D4a21uAtt4yp4wn
# Database configuration
# - Use `postgres://localhost/phoenix_channel_workshop_test` if you have a local PostgreSQL server
# - Use `postgres://username:password@localhost/phoenix_channel_workshop_test` if you have a local PostgreSQL server with credentials
# - Use `postgres://postgres:development@localhost/phoenix_channel_workshop_test` if you’re using the PostgreSQL server provided by Docker Compose
DATABASE_URL=postgres://postgres:boilerplate@localhost/phoenix_channel_workshop_test
# Static URL configuration (used by Phoenix to generate static file URLs, eg.
# CSS and JavaScript). We often use these variables to configure a CDN that
# will cache static files once they have been served by the Phoenix
# application.
STATIC_URL=https://example.com:443