Skip to content

Commit

Permalink
Merge pull request #720 from JuezFenix/main
Browse files Browse the repository at this point in the history
Add steamgriddb and mobygames api keys. Change base image for romm
  • Loading branch information
davestephens committed Aug 8, 2024
2 parents eaf2d66 + f3c2d6e commit 06d7508
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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

0 comments on commit 06d7508

Please sign in to comment.