changed project/app name

This commit is contained in:
Adam Piontek 2021-02-24 07:49:39 -05:00
parent 4fbafbfa5e
commit cd31432f88
89 changed files with 421 additions and 417 deletions

View file

@ -7,15 +7,15 @@
# General application configuration
use Mix.Config
config :real_estate,
ecto_repos: [RealEstate.Repo]
config :bones73k,
ecto_repos: [Bones73k.Repo]
# Configures the endpoint
config :real_estate, RealEstateWeb.Endpoint,
config :bones73k, Bones73kWeb.Endpoint,
url: [host: "localhost"],
secret_key_base: "LdIQmzV5UCWSbB2SdiWFHLgxYNObKq9Za/VyguoILxfOAMDb5IsptKCKtXTRn+Tf",
render_errors: [view: RealEstateWeb.ErrorView, accepts: ~w(html json), layout: false],
pubsub_server: RealEstate.PubSub,
render_errors: [view: Bones73kWeb.ErrorView, accepts: ~w(html json), layout: false],
pubsub_server: Bones73k.PubSub,
live_view: [signing_salt: "2D4GC4ac"]
# Configures Elixir's Logger

View file

@ -9,7 +9,7 @@ use Mix.Config
# manifest is generated by the `mix phx.digest` task,
# which you should run after static files are built and
# before starting your production server.
config :real_estate, RealEstateWeb.Endpoint,
config :bones73k, Bones73kWeb.Endpoint,
url: [host: "example.com", port: 80],
cache_static_manifest: "priv/static/cache_manifest.json"
@ -21,7 +21,7 @@ config :logger, level: :info
# To get SSL working, you will need to add the `https` key
# to the previous section and set your `:url` port to 443:
#
# config :real_estate, RealEstateWeb.Endpoint,
# config :bones73k, Bones73kWeb.Endpoint,
# ...
# url: [host: "example.com", port: 443],
# https: [
@ -45,7 +45,7 @@ config :logger, level: :info
# We also recommend setting `force_ssl` in your endpoint, ensuring
# no data is ever sent via http, always redirecting to https:
#
# config :real_estate, RealEstateWeb.Endpoint,
# config :bones73k, Bones73kWeb.Endpoint,
# force_ssl: [hsts: true]
#
# Check `Plug.SSL` for all available options in `force_ssl`.