diff --git a/docker-compose.yml b/docker-compose.yml index 7f03658f6..574a8623a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -28,7 +28,7 @@ services: romm-postgres-dev: image: docker.io/library/postgres:16-alpine - container_name: postgresql + container_name: romm-postgresql-dev restart: unless-stopped env_file: - .env diff --git a/env.template b/env.template index 61f12eafd..ac8959ceb 100644 --- a/env.template +++ b/env.template @@ -26,8 +26,20 @@ DB_ROOT_PASSWD= REDIS_HOST=127.0.0.1 REDIS_PORT=6379 +# Authentik +POSTGRES_DB=authentik +POSTGRES_USER=authentik +POSTGRES_PASSWORD= +AUTHENTIK_SECRET_KEY= +AUTHENTIK_BOOTSTRAP_PASSWORD= + # Authentication ROMM_AUTH_SECRET_KEY= +OIDC_ENABLED= +OIDC_CLIENT_ID= +OIDC_CLIENT_SECRET= +OIDC_REDIRECT_URI= +OIDC_SERVER_APPLICATION_URL= # Filesystem watcher (optional) ENABLE_RESCAN_ON_FILESYSTEM_CHANGE=true diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 4a1eeb86e..0ae6e067c 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -8,7 +8,7 @@ "name": "romm", "version": "0.0.1", "hasInstallScript": true, - "license": "GPL-3.0-only", + "license": "AGPL-3.0-only", "dependencies": { "@mdi/font": "7.0.96", "@ruffle-rs/ruffle": "^0.1.0-nightly.2024.7.29",