@@ -12,12 +12,12 @@ import Config
1212# If you use `mix release`, you need to explicitly enable the server
1313# by passing the PHX_SERVER=true when you start it:
1414#
15- # PHX_SERVER=true bin/bugsbyte start
15+ # PHX_SERVER=true bin/ares start
1616#
1717# Alternatively, you can use `mix phx.gen.release` to generate a `bin/server`
1818# script that automatically sets the env var above.
1919if System . get_env ( "PHX_SERVER" ) do
20- config :bugsbyte , BugsbyteWeb .Endpoint, server: true
20+ config :ares , AresWeb .Endpoint, server: true
2121end
2222
2323if config_env ( ) == :prod do
@@ -30,7 +30,7 @@ if config_env() == :prod do
3030
3131 maybe_ipv6 = if System . get_env ( "ECTO_IPV6" ) in ~w( true 1) , do: [ :inet6 ] , else: [ ]
3232
33- config :bugsbyte , Bugsbyte .Repo,
33+ config :ares , Ares .Repo,
3434 # ssl: true,
3535 url: database_url ,
3636 pool_size: String . to_integer ( System . get_env ( "POOL_SIZE" ) || "10" ) ,
@@ -53,9 +53,9 @@ if config_env() == :prod do
5353 host = System . get_env ( "PHX_HOST" ) || "example.com"
5454 port = String . to_integer ( System . get_env ( "PORT" ) || "4000" )
5555
56- config :bugsbyte , :dns_cluster_query , System . get_env ( "DNS_CLUSTER_QUERY" )
56+ config :ares , :dns_cluster_query , System . get_env ( "DNS_CLUSTER_QUERY" )
5757
58- config :bugsbyte , BugsbyteWeb .Endpoint,
58+ config :ares , AresWeb .Endpoint,
5959 url: [ host: host , port: 443 , scheme: "https" ] ,
6060 http: [
6161 # Enable IPv6 and bind on all interfaces.
@@ -72,7 +72,7 @@ if config_env() == :prod do
7272 # To get SSL working, you will need to add the `https` key
7373 # to your endpoint configuration:
7474 #
75- # config :bugsbyte, BugsbyteWeb .Endpoint,
75+ # config :ares, AresWeb .Endpoint,
7676 # https: [
7777 # ...,
7878 # port: 443,
@@ -94,7 +94,7 @@ if config_env() == :prod do
9494 # We also recommend setting `force_ssl` in your config/prod.exs,
9595 # ensuring no data is ever sent via http, always redirecting to https:
9696 #
97- # config :bugsbyte, BugsbyteWeb .Endpoint,
97+ # config :ares, AresWeb .Endpoint,
9898 # force_ssl: [hsts: true]
9999 #
100100 # Check `Plug.SSL` for all available options in `force_ssl`.
@@ -104,7 +104,7 @@ if config_env() == :prod do
104104 # In production you need to configure the mailer to use a different adapter.
105105 # Here is an example configuration for Mailgun:
106106 #
107- # config :bugsbyte, Bugsbyte .Mailer,
107+ # config :ares, Ares .Mailer,
108108 # adapter: Swoosh.Adapters.Mailgun,
109109 # api_key: System.get_env("MAILGUN_API_KEY"),
110110 # domain: System.get_env("MAILGUN_DOMAIN")
0 commit comments