Rename downcased

This commit is contained in:
Jamil Bou Kheir
2020-05-04 21:43:01 -07:00
parent 7aa154f624
commit b7f29c8519
7 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
defmodule CfPhx.Release do
@app :cf_phx
@app :cf_http
def migrate do
load_app()

View File

@@ -1,5 +1,5 @@
defmodule CfPhx.Repo do
use Ecto.Repo,
otp_app: :cf_phx,
otp_app: :cf_http,
adapter: Ecto.Adapters.Postgres
end

View File

@@ -30,7 +30,7 @@ defmodule CfPhxWeb do
def view do
quote do
use Phoenix.View,
root: "lib/cf_phx_web/templates",
root: "lib/cf_http_web/templates",
namespace: CfPhxWeb
# Import convenience functions from controllers

View File

@@ -1,12 +1,12 @@
defmodule CfPhxWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :cf_phx
use Phoenix.Endpoint, otp_app: :cf_http
# The session will be stored in the cookie and signed,
# this means its contents can be read but not tampered with.
# Set :encryption_salt if you would also like to encrypt it.
@session_options [
store: :cookie,
key: "_cf_phx_key",
key: "_cf_http_key",
signing_salt: "Z9eq8iof"
]
@@ -20,7 +20,7 @@ defmodule CfPhxWeb.Endpoint do
# when deploying your static files in production.
plug Plug.Static,
at: "/",
from: :cf_phx,
from: :cf_http,
gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt)

View File

@@ -20,5 +20,5 @@ defmodule CfPhxWeb.Gettext do
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
"""
use Gettext, otp_app: :cf_phx
use Gettext, otp_app: :cf_http
end

View File

@@ -3,7 +3,7 @@ defmodule CfPhx.MixProject do
def project do
[
app: :cf_phx,
app: :cf_http,
version: "0.1.0",
build_path: "../../_build",
config_path: "../../config/config.exs",