Subiendo api v2
This commit is contained in:
78
config/config.exs
Normal file
78
config/config.exs
Normal file
@ -0,0 +1,78 @@
|
||||
# This file is responsible for configuring your application
|
||||
# and its dependencies with the aid of the Config module.
|
||||
#
|
||||
# This configuration file is loaded before any dependency and
|
||||
# is restricted to this project.
|
||||
|
||||
# General application configuration
|
||||
import Config
|
||||
|
||||
config :api,
|
||||
ecto_repos: [Api.Repo],
|
||||
generators: [timestamp_type: :utc_datetime]
|
||||
|
||||
# Configures the endpoint
|
||||
config :api, ApiWeb.Endpoint,
|
||||
url: [host: "127.0.0.1", path: "/api"],
|
||||
# url: [host: "localhost"],
|
||||
adapter: Phoenix.Endpoint.Cowboy2Adapter,
|
||||
render_errors: [
|
||||
formats: [html: ApiWeb.ErrorHTML, json: ApiWeb.ErrorJSON],
|
||||
layout: false
|
||||
],
|
||||
server: true,
|
||||
pubsub_server: Api.PubSub,
|
||||
live_view: [signing_salt: "tasyHEYm"]
|
||||
|
||||
# Configures the mailer
|
||||
#
|
||||
# By default it uses the "Local" adapter which stores the emails
|
||||
# locally. You can see the emails in your browser, at "/dev/mailbox".
|
||||
#
|
||||
# For production it's recommended to configure a different adapter
|
||||
# at the `config/runtime.exs`.
|
||||
# config :api, Api.Mailer, adapter: Swoosh.Adapters.Local
|
||||
|
||||
# Configure esbuild (the version is required)
|
||||
config :esbuild,
|
||||
version: "0.17.11",
|
||||
default: [
|
||||
args:
|
||||
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
|
||||
cd: Path.expand("../assets", __DIR__),
|
||||
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
|
||||
]
|
||||
|
||||
# Configure tailwind (the version is required)
|
||||
config :tailwind,
|
||||
version: "3.3.2",
|
||||
default: [
|
||||
args: ~w(
|
||||
--config=tailwind.config.js
|
||||
--input=css/app.css
|
||||
--output=../priv/static/assets/app.css
|
||||
),
|
||||
cd: Path.expand("../assets", __DIR__)
|
||||
]
|
||||
|
||||
# Configures Elixir's Logger
|
||||
config :logger, :console,
|
||||
format: "$time $metadata[$level] $message\n",
|
||||
metadata: [:request_id]
|
||||
|
||||
config :logger,
|
||||
backends: [:console, {LoggerFileBackend, :error_log}],
|
||||
format: "[$level] $message\n"
|
||||
|
||||
config :logger, :error_log,
|
||||
path: "api.log",
|
||||
level: :debug,
|
||||
format: "[$level] $message\n",
|
||||
rotate: %{max_bytes: 1040000, keep: 5}
|
||||
|
||||
# Use Jason for JSON parsing in Phoenix
|
||||
config :phoenix, :json_library, Jason
|
||||
|
||||
# Import environment specific config. This must remain at the bottom
|
||||
# of this file so it overrides the configuration defined above.
|
||||
import_config "#{config_env()}.exs"
|
||||
83
config/dev.exs
Normal file
83
config/dev.exs
Normal file
@ -0,0 +1,83 @@
|
||||
import Config
|
||||
|
||||
# Configure your database
|
||||
config :api, Api.Repo,
|
||||
username: "postgres",
|
||||
password: "1nf0rm3",
|
||||
hostname: "127.0.0.1",
|
||||
database: "dicomscp",
|
||||
# port: 5555,
|
||||
stacktrace: true,
|
||||
show_sensitive_data_on_connection_error: true,
|
||||
pool_size: 10
|
||||
|
||||
# For development, we disable any cache and enable
|
||||
# debugging and code reloading.
|
||||
#
|
||||
# The watchers configuration can be used to run external
|
||||
# watchers to your application. For example, we can use it
|
||||
# to bundle .js and .css sources.
|
||||
config :api, ApiWeb.Endpoint,
|
||||
# Binding to loopback ipv4 address prevents access from other machines.
|
||||
# Change to `ip: {0, 0, 0, 0}` to allow access from other machines.
|
||||
http: [ip: {127, 0, 0, 1}, port: 4001],
|
||||
check_origin: false,
|
||||
code_reloader: true,
|
||||
debug_errors: true,
|
||||
secret_key_base: "LrPrPC6VrEz77otnFQYnZtNGmYXqp2wz7IlAsYeifZMvt9HvEGWJiX7o4QzgxYdd",
|
||||
watchers: [
|
||||
esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]},
|
||||
tailwind: {Tailwind, :install_and_run, [:default, ~w(--watch)]}
|
||||
]
|
||||
|
||||
# ## SSL Support
|
||||
#
|
||||
# In order to use HTTPS in development, a self-signed
|
||||
# certificate can be generated by running the following
|
||||
# Mix task:
|
||||
#
|
||||
# mix phx.gen.cert
|
||||
#
|
||||
# Run `mix help phx.gen.cert` for more information.
|
||||
#
|
||||
# The `http:` config above can be replaced with:
|
||||
#
|
||||
# https: [
|
||||
# port: 4001,
|
||||
# cipher_suite: :strong,
|
||||
# keyfile: "priv/cert/selfsigned_key.pem",
|
||||
# certfile: "priv/cert/selfsigned.pem"
|
||||
# ],
|
||||
#
|
||||
# If desired, both `http:` and `https:` keys can be
|
||||
# configured to run both http and https servers on
|
||||
# different ports.
|
||||
|
||||
# Watch static and templates for browser reloading.
|
||||
config :api, ApiWeb.Endpoint,
|
||||
live_reload: [
|
||||
patterns: [
|
||||
~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$",
|
||||
~r"priv/gettext/.*(po)$",
|
||||
~r"lib/api_web/(controllers|live|components)/.*(ex|heex)$"
|
||||
]
|
||||
]
|
||||
|
||||
# Enable dev routes for dashboard and mailbox
|
||||
config :api, dev_routes: true
|
||||
|
||||
# Do not include metadata nor timestamps in development logs
|
||||
config :logger, :console, format: "[$level] $message\n"
|
||||
|
||||
# Set a higher stacktrace during development. Avoid configuring such
|
||||
# in production as building large stacktraces may be expensive.
|
||||
config :phoenix, :stacktrace_depth, 20
|
||||
|
||||
# Initialize plugs at runtime for faster development compilation
|
||||
config :phoenix, :plug_init_mode, :runtime
|
||||
|
||||
# Include HEEx debug annotations as HTML comments in rendered markup
|
||||
config :phoenix_live_view, :debug_heex_annotations, true
|
||||
|
||||
# Disable swoosh api client as it is only required for production adapters.
|
||||
config :swoosh, :api_client, false
|
||||
20
config/prod.exs
Normal file
20
config/prod.exs
Normal file
@ -0,0 +1,20 @@
|
||||
import Config
|
||||
|
||||
# Note we also include the path to a cache manifest
|
||||
# containing the digested version of static files. This
|
||||
# manifest is generated by the `mix assets.deploy` task,
|
||||
# which you should run after static files are built and
|
||||
# before starting your production server.
|
||||
config :api, ApiWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
|
||||
|
||||
# Configures Swoosh API Client
|
||||
config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: Api.Finch
|
||||
|
||||
# Disable Swoosh Local Memory Storage
|
||||
config :swoosh, local: false
|
||||
|
||||
# Do not print debug messages in production
|
||||
config :logger, level: :info
|
||||
|
||||
# Runtime production configuration, including reading
|
||||
# of environment variables, is done on config/runtime.exs.
|
||||
58
config/runtime.exs
Normal file
58
config/runtime.exs
Normal file
@ -0,0 +1,58 @@
|
||||
import Config
|
||||
|
||||
Envar.load(".env")
|
||||
Envar.require_env_file(".env")
|
||||
|
||||
if System.get_env("PHX_SERVER") do
|
||||
config :api, ApiWeb.Endpoint, server: true
|
||||
end
|
||||
|
||||
if config_env() == :prod do
|
||||
config :api, ApiWeb.Endpoint,
|
||||
check_origin: [Envar.get("CHECK_ORIGIN")]
|
||||
|
||||
database_url = Envar.get("DATABASE_URL")
|
||||
pool_size = String.to_integer(System.get_env("POOL_SIZE") || "10")
|
||||
|
||||
maybe_ipv6 = if System.get_env("ECTO_IPV6") in ~w(true 1), do: [:inet6], else: []
|
||||
|
||||
config :api, Api.Repo,
|
||||
url: database_url,
|
||||
pool_size: pool_size,
|
||||
socket_options: maybe_ipv6
|
||||
|
||||
# Configuración de Endpoint
|
||||
secret_key_base = Envar.get("SECRET_KEY_BASE")
|
||||
host = Envar.get("PHX_HOST")
|
||||
port = Envar.get("PHX_PORT")
|
||||
config :api, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY")
|
||||
|
||||
config :api, ApiWeb.Endpoint,
|
||||
url: [host: host, port: 80, scheme: Envar.get("SCHEME"), path: Envar.get("ROOT_PATH")],
|
||||
http: [
|
||||
ip: {127, 0, 0, 1},
|
||||
port: port || 4001
|
||||
],
|
||||
secret_key_base: secret_key_base,
|
||||
server: true
|
||||
end
|
||||
|
||||
config :api, Api.Mailer,
|
||||
adapter: Swoosh.Adapters.SMTP,
|
||||
relay: Envar.get("SMTP_RELAY"),
|
||||
username: Envar.get("SMTP_USER"),
|
||||
password: Envar.get("SMTP_PASS"),
|
||||
auth: :always,
|
||||
ssl: true,
|
||||
port: 465,
|
||||
retries: 10,
|
||||
sockopts: [
|
||||
versions: [:"tlsv1.2"],
|
||||
verify: :verify_peer,
|
||||
cacerts: :public_key.cacerts_get(),
|
||||
depth: 3,
|
||||
customize_hostname_check: [
|
||||
match_fun: :public_key.pkix_verify_hostname_match_fun(:https)
|
||||
],
|
||||
server_name_indication: Envar.get("SERVER_NAME_INDICATION")
|
||||
]
|
||||
33
config/test.exs
Normal file
33
config/test.exs
Normal file
@ -0,0 +1,33 @@
|
||||
import Config
|
||||
|
||||
# Configure your database
|
||||
#
|
||||
# The MIX_TEST_PARTITION environment variable can be used
|
||||
# to provide built-in test partitioning in CI environment.
|
||||
# Run `mix help test` for more information.
|
||||
config :api, Api.Repo,
|
||||
username: "postgres",
|
||||
password: "postgres",
|
||||
hostname: "localhost",
|
||||
database: "api_test#{System.get_env("MIX_TEST_PARTITION")}",
|
||||
pool: Ecto.Adapters.SQL.Sandbox,
|
||||
pool_size: 10
|
||||
|
||||
# We don't run a server during test. If one is required,
|
||||
# you can enable the server option below.
|
||||
config :api, ApiWeb.Endpoint,
|
||||
http: [ip: {127, 0, 0, 1}, port: 4002],
|
||||
secret_key_base: "BAgQ2iGVEf5rP7UGsB7OhTOUsKts+1RxCVPMKUe0yt7H1bz4crpgPNInZuyf3Vet",
|
||||
server: false
|
||||
|
||||
# In test we don't send emails.
|
||||
config :api, Api.Mailer, adapter: Swoosh.Adapters.Test
|
||||
|
||||
# Disable swoosh api client as it is only required for production adapters.
|
||||
config :swoosh, :api_client, false
|
||||
|
||||
# Print only warnings and errors during test
|
||||
config :logger, level: :warning
|
||||
|
||||
# Initialize plugs at runtime for faster test compilation
|
||||
config :phoenix, :plug_init_mode, :runtime
|
||||
Reference in New Issue
Block a user