Skip to content

Commit

Permalink
env-check fix for apache#30916
Browse files Browse the repository at this point in the history
  • Loading branch information
nels committed Nov 22, 2024
1 parent a3f0c73 commit 07f8207
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion UCLH-Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,20 @@ Create a _docker/.env-local_ file with the following keys:
```
COMPOSE_PROJECT_NAME=EMAP-Insights
HOST_NAME=<GAEXX>
# Set this to a unique secure random value on production
DATABASE_PASSWORD=superset
SUPERSET_LOAD_EXAMPLES=false
# Make sure you set this to a unique secure random value on production
# using something like `openssl rand -base64 42`
SUPERSET_SECRET_KEY=TEST_NON_DEV_SECRET
SUPERSET_SECRET_KEY=TEST_NON_DEV_SECRET
## Run
```bash
```
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ services:
args:
<<: *network
container_name: superset_checks
command: ["/app/scripts/check-env.py"]
# command: ["/app/scripts/check-env.py"] # Open Issue https://github.com/apache/superset/issues/30916
command: ["true"]
env_file:
- docker/.env # default
- docker/.env-local # optional override
Expand Down

0 comments on commit 07f8207

Please sign in to comment.