Skip to content

Commit

Permalink
OZ-196: Add superset admin user env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliouzbett committed Dec 19, 2023
1 parent f0e919f commit e1231e3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ SECRET_KEY=thisISaSECRET_1234
SUPERSET_DB=superset
SUPERSET_DB_USER=superset
SUPERSET_DB_PASSWORD=superset
SUPERSET_ADMIN_USERNAME=admin
SUPERSET_ADMIN_PASSWORD=password
SUPERSET_LOAD_EXAMPLES=no

Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ build
target/

# IDE
.vscode
.vscode

## IntelliJ IDEA
.idea/
1 change: 1 addition & 0 deletions docker-compose-superset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
- DATABASE_USER=${SUPERSET_DB_USER}
- DATABASE_PASSWORD=${SUPERSET_DB_PASSWORD}
- SECRET_KEY=${SECRET_KEY}
- ADMIN_USERNAME=${SUPERSET_ADMIN_USERNAME}
- ADMIN_PASSWORD=${SUPERSET_ADMIN_PASSWORD}
- ANALYTICS_DB_PASSWORD=${ANALYTICS_DB_PASSWORD}
image: &superset-image amancevice/superset:2.1.0
Expand Down

0 comments on commit e1231e3

Please sign in to comment.