Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename game_backend release to central_backend #436

Merged
merged 10 commits into from
Apr 9, 2024
2 changes: 1 addition & 1 deletion devops/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mix deps.get --only $MIX_ENV
mix deps.compile
mix compile
mix release ${RELEASE} --overwrite
if [ ${RELEASE} == "game_backend" ]; then
if [ ${RELEASE} == "central_backend" ]; then
mix ecto.migrate
fi

Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ defmodule MirraBackend.MixProject do
[
arena: [applications: [arena: :permanent]],
arena_load_test: [applications: [arena_load_test: :permanent]],
bot_manager: [applications: [bot_manager: :permanent]],
game_client: [applications: [game_client: :permanent]],
game_backend: [
central_backend: [
applications: [
champions: :permanent,
game_backend: :permanent,
Expand Down