mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
Compare commits
4 Commits
6eb2a53695
...
5cd457bc62
| Author | SHA1 | Date | |
|---|---|---|---|
| 5cd457bc62 | |||
| 27f5fc6730 | |||
| d6ca73e4bd | |||
| 9909abd17f |
@ -1,4 +1,4 @@
|
|||||||
elixir 1.14.1
|
elixir 1.14.1
|
||||||
python 3.9.1
|
python 3.9.1
|
||||||
nodejs 16.17.1
|
nodejs 16.14.0
|
||||||
erlang 24.2.1
|
erlang 24.2.1
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
# This configuration file is loaded before any dependency and
|
# This configuration file is loaded before any dependency and
|
||||||
# is restricted to this project.
|
# is restricted to this project.
|
||||||
use Mix.Config
|
import Config
|
||||||
|
|
||||||
config :phoenix, :json_library, Jason
|
config :phoenix, :json_library, Jason
|
||||||
|
|
||||||
@ -52,4 +52,4 @@ config :dart_sass,
|
|||||||
|
|
||||||
# Import environment specific config. This must remain at the bottom
|
# Import environment specific config. This must remain at the bottom
|
||||||
# of this file so it overrides the configuration defined above.
|
# of this file so it overrides the configuration defined above.
|
||||||
import_config "#{Mix.env()}.exs"
|
import_config "#{config_env()}.exs"
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
use Mix.Config
|
import Config
|
||||||
|
|
||||||
# For development, we disable any cache and enable
|
# For development, we disable any cache and enable
|
||||||
# debugging and code reloading.
|
# debugging and code reloading.
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
use Mix.Config
|
import Config
|
||||||
|
|
||||||
config :chess, ChessWeb.Endpoint,
|
config :chess, ChessWeb.Endpoint,
|
||||||
cache_static_manifest: "priv/static/cache_manifest.json",
|
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"}],
|
http: [port: {:system, "PORT"}],
|
||||||
root: "./assets",
|
root: "./assets",
|
||||||
secret_key_base: System.get_env("SECRET_KEY_BASE"),
|
secret_key_base: System.get_env("SECRET_KEY_BASE"),
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
use Mix.Config
|
import Config
|
||||||
|
|
||||||
# We don't run a server during test. If one is required,
|
# We don't run a server during test. If one is required,
|
||||||
# you can enable the server option below.
|
# you can enable the server option below.
|
||||||
|
|||||||
@ -1 +1,3 @@
|
|||||||
node_version=16.17.1
|
node_version=14.15.4
|
||||||
|
|
||||||
|
yarn_version=1.22.10
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user