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

Add steamgriddb and mobygames api keys. Change base image for romm #720

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion roles/romm/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ romm_hostname: "romm"

# docker
romm_container_name: "romm"
romm_image_name: "zurdi15/romm"
romm_image_name: "rommapp/romm"
romm_image_version: "latest"

romm_db_container_name: "romm-db"
Expand All @@ -38,6 +38,12 @@ romm_redis_memory: 1g
romm_igdb_client_id: "abcd"
romm_igdb_client_secret: "abcd"

# MobyGames auth credentials
romm_mobygames_client_id: "abcd"

# SteamGridDB auth credentials
romm_steamgriddb_client_id: "abcd"

# auth config
romm_auth_secret_key: "aaaabbbbccccdddd" # Generate a key with `openssl rand -hex 32`
romm_auth_username: "admin"
Expand Down
2 changes: 2 additions & 0 deletions roles/romm/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
REDIS_PORT: "6379"
IGDB_CLIENT_ID: "{{ romm_igdb_client_id }}"
IGDB_CLIENT_SECRET: "{{ romm_igdb_client_secret }}"
MOBYGAMES_API_KEY: "{{ romm_mobygames_client_id }}"
STEAMGRIDDB_API_KEY: "{{ romm_steamgriddb_client_id }}"
ROMM_AUTH_USERNAME: "{{ romm_auth_username }}"
ROMM_AUTH_PASSWORD: "{{ romm_auth_password }}"
restart_policy: unless-stopped
Expand Down
Loading