mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
Rename downcased
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
defmodule CfPhx.Release do
|
||||
@app :cf_phx
|
||||
@app :cf_http
|
||||
|
||||
def migrate do
|
||||
load_app()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
defmodule CfPhx.Repo do
|
||||
use Ecto.Repo,
|
||||
otp_app: :cf_phx,
|
||||
otp_app: :cf_http,
|
||||
adapter: Ecto.Adapters.Postgres
|
||||
end
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user