File tree 2 files changed +1
-18
lines changed
2 files changed +1
-18
lines changed Original file line number Diff line number Diff line change @@ -9,19 +9,10 @@ import Config
9
9
10
10
# Set ecto repos
11
11
config :epochtalk_server , ecto_repos: [ EpochtalkServer.Repo ]
12
+
12
13
# Set Guardian.DB to GuardianRedis
13
14
config :guardian , Guardian.DB , repo: GuardianRedis.Repo
14
15
15
- # Configures the endpoint
16
- config :epochtalk_server , EpochtalkServerWeb.Endpoint ,
17
- url: [ host: "localhost" ] ,
18
- render_errors: [
19
- formats: [ json: EpochtalkServerWeb.Controllers.ErrorJSON ] ,
20
- layout: false
21
- ] ,
22
- pubsub_server: EpochtalkServer.PubSub ,
23
- live_view: [ signing_salt: "2Ay27BWv" ]
24
-
25
16
# Swoosh API client is needed for adapters other than SMTP.
26
17
config :swoosh , :api_client , false
27
18
Original file line number Diff line number Diff line change 1
1
import Config
2
2
3
- # Include the path to a cache manifest
4
- # containing the digested version of static files. This
5
- # manifest is generated by the `mix phx.digest` task,
6
- # which you should run after static files are built and
7
- # before starting your production server.
8
- config :epochtalk_server , EpochtalkServerWeb.Endpoint ,
9
- cache_static_manifest: "priv/static/cache_manifest.json"
10
-
11
3
# Do not print debug messages in production
12
4
config :logger , level: :info
13
5
You can’t perform that action at this time.
0 commit comments