Skip to content

Commit 4695fc6

Browse files
committed
fix: use new path ?
1 parent 197b9c2 commit 4695fc6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
pip install -r requirements/requirements.txt -r requirements/prod-requirements.txt
2727
- name: Run Tests
2828
run: |
29-
DJANGO_SETTINGS_MODULE=pydotorg.settings.static python ./app/manage.py collectstatic --noinput
29+
DJANGO_SETTINGS_MODULE=app.pydotorg.settings.static python ./app/manage.py collectstatic --noinput

Dockerfile.cabotage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ RUN --mount=type=cache,target=/root/.cache/pip \
4646
install \
4747
-r requirements.txt -r prod-requirements.txt
4848
COPY . /code/
49-
RUN DJANGO_SETTINGS_MODULE=pydotorg.settings.static python app/manage.py collectstatic --noinput
49+
RUN DJANGO_SETTINGS_MODULE=app.pydotorg.settings.static python app/manage.py collectstatic --noinput

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
- "8000:8000"
3333
environment:
3434
DATABASE_URL: postgresql://pythondotorg:pythondotorg@postgres:5432/pythondotorg
35-
DJANGO_SETTINGS_MODULE: pydotorg.settings.local
35+
DJANGO_SETTINGS_MODULE: app.pydotorg.settings.local
3636
depends_on:
3737
postgres:
3838
condition: service_healthy
@@ -46,7 +46,7 @@ services:
4646
- .:/code
4747
environment:
4848
DATABASE_URL: postgresql://pythondotorg:pythondotorg@postgres:5432/pythondotorg
49-
DJANGO_SETTINGS_MODULE: pydotorg.settings.local
49+
DJANGO_SETTINGS_MODULE: app.pydotorg.settings.local
5050
depends_on:
5151
postgres:
5252
condition: service_healthy

0 commit comments

Comments
 (0)