1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
5cd457bc62 Switch default domain 2023-01-30 12:19:36 -06:00
27f5fc6730 Switch to Config module 2023-01-30 12:19:22 -06:00
d6ca73e4bd Will this work? 2023-01-30 11:52:33 -06:00
9909abd17f NodeJS version 14.20.1 2023-01-30 11:52:33 -06:00
6 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
elixir 1.14.1
python 3.9.1
nodejs 16.17.1
nodejs 16.14.0
erlang 24.2.1

View File

@ -3,7 +3,7 @@
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
use Mix.Config
import Config
config :phoenix, :json_library, Jason
@ -52,4 +52,4 @@ config :dart_sass,
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"
import_config "#{config_env()}.exs"

View File

@ -1,4 +1,4 @@
use Mix.Config
import Config
# For development, we disable any cache and enable
# debugging and code reloading.

View File

@ -1,8 +1,8 @@
use Mix.Config
import Config
config :chess, ChessWeb.Endpoint,
cache_static_manifest: "priv/static/cache_manifest.json",
check_origin: ["https://chess.danbarber.me", "https://64squares.club"],
check_origin: ["https://chess.danbee.in", "https://64squares.club"],
http: [port: {:system, "PORT"}],
root: "./assets",
secret_key_base: System.get_env("SECRET_KEY_BASE"),

View File

@ -1,4 +1,4 @@
use Mix.Config
import Config
# We don't run a server during test. If one is required,
# you can enable the server option below.

View File

@ -1 +1,3 @@
node_version=16.17.1
node_version=14.15.4
yarn_version=1.22.10