diff options
author | Logan Hunt <logan.hunt@usu.edu> | 2023-02-01 10:02:27 -0700 |
---|---|---|
committer | Logan Hunt <logan.hunt@usu.edu> | 2023-02-01 10:02:27 -0700 |
commit | 0ad97a374a52cd1c7b8323fa82b53742c935f891 (patch) | |
tree | a89bb2547ce8bdb15230da480db547bee099a84b /config/test.exs | |
parent | ce27bfc8717cfa5d0c95f258cfcb7441835c2d3e (diff) | |
download | chessh-0ad97a374a52cd1c7b8323fa82b53742c935f891.tar.gz chessh-0ad97a374a52cd1c7b8323fa82b53742c935f891.zip |
More config. This is getting tiresome
Diffstat (limited to 'config/test.exs')
-rw-r--r-- | config/test.exs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/test.exs b/config/test.exs index ae8c230..83ee6f1 100644 --- a/config/test.exs +++ b/config/test.exs @@ -18,6 +18,14 @@ config :hammer, redis: {Hammer.Backend.ETS, [expiry_ms: 60_000 * 60 * 4, cleanup_interval_ms: 60_000 * 10]} ] +config :libcluster, + topologies: [ + chessh_test: [ + strategy: Elixir.Cluster.Strategy.Epmd + ] + ] + + config :chessh, - ssh_port: 34_355, + ssh_port: 42_069, key_dir: Path.join(Path.dirname(__DIR__), "priv/test_keys") |