Skip to content
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
1 change: 1 addition & 0 deletions .github/assets/profiles/_test/pulp_config.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
PULP_API_ROOT=/my/custom/api/
MY_CUSTOM_ENV_VAR=hello
PULP_ALLOWED_CONTENT_CHECKSUMS=['sha1', 'sha224', 'sha256', 'sha384', 'sha512']
PULP_SECRET_KEY="testtest"
CUSTOM_VAR_WITH_DEFAULT1={CUSTOM_DEFAULT1}
CUSTOM_VAR_WITH_DEFAULT2={CUSTOM_DEFAULT2}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ DEV_SOURCE_PATH=pulpcore
API_PORT=4002
COMPOSE_PROJECT_NAME=test

# Django SECRET_KEY value, used for session auth - uncomment this and change the value to something else
PULP_SECRET_KEY="your_secret_value_here"

# If you want to use a different directory for your git checkouts you can set this
# SRC_DIR=/path/to/my/git/checkouts
```
Expand Down
4 changes: 2 additions & 2 deletions base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=ghcr.io/pulp/pulp-ci-centos9:latest
ARG BASE_IMAGE=ghcr.io/pulp/pulp-ci-centos10:latest
FROM $BASE_IMAGE

# configure S6 to use env variables
Expand All @@ -7,7 +7,7 @@ ENV S6_KEEP_ENV=1
COPY dev_requirements.txt /dev_requirements.txt

COPY switch_python /usr/bin/switch_python
ARG PYTHON_VERSION=3.11
ARG PYTHON_VERSION=3.12
RUN switch_python "$PYTHON_VERSION"

RUN uv pip install -r dev_requirements.txt
Expand Down
3 changes: 3 additions & 0 deletions compose.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ DEV_SOURCE_PATH=
# API_HOST=localhost
# API_PORT=5001
# API_PROTOCOL=http

# Django SECRET_KEY value, used for session auth - uncomment this and change the value to something else
# PULP_SECRET_KEY="dev_changeme_notasecret"
Loading