2024-08-16 18:27:34 +02:00
|
|
|
# This file is responsible for configuring your umbrella
|
|
|
|
# and **all applications** and their dependencies with the
|
|
|
|
# help of the Config module.
|
|
|
|
#
|
|
|
|
# Note that all applications in your umbrella share the
|
|
|
|
# same configuration and dependencies, which is why they
|
|
|
|
# all use the same configuration file. If you want different
|
|
|
|
# configurations or dependencies per app, it is best to
|
|
|
|
# move said applications out of the umbrella.
|
|
|
|
import Config
|
2024-08-18 13:44:09 +02:00
|
|
|
config :logger, :console,
|
|
|
|
level: :debug,
|
2024-10-03 20:36:26 +02:00
|
|
|
format: "$date $time [$level] $metadata$message\n",
|
2024-08-18 13:44:09 +02:00
|
|
|
metadata: []
|
2024-10-10 14:42:40 +02:00
|
|
|
|
|
|
|
config :amethyst,
|
|
|
|
mojang_game_meta: "https://piston-meta.mojang.com/mc/game/version_manifest_v2.json",
|
|
|
|
session_server: "https://sessionserver.mojang.com"
|