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
4 changes: 2 additions & 2 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ jobs:
build-args: ${{ matrix.build-args || '' }}
cache-from: type=gha
cache-to: type=gha,mode=max
provenance: true
sbom: true
provenance: false
sbom: false

- name: Generate artifact attestation
uses: actions/attest-build-provenance@v2
Expand Down
2 changes: 1 addition & 1 deletion backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ REDIS_MAX_RETRIES=3
NEO4J_HOST=neo4j
NEO4J_PORT=7687
NEO4J_USERNAME=neo4j
NEO4J_PASSWORD=secure_default_password
NEO4J_PASSWORD=your_secure_neo4j_password_here
NEO4J_DATABASE=neo4j
NEO4J_MAX_CONNECTION_LIFETIME=3600
NEO4J_MAX_CONNECTION_POOL_SIZE=50
Expand Down
16 changes: 0 additions & 16 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,22 +206,6 @@ services:
redis:
condition: service_started

backend-worker-cleanup:
build: ./backend
command: sh -c "sleep 5 && ./.venv/bin/python manage.py intake_worker cleanup"
volumes:
- ./uploads:/app/uploads
- cv_temp:/tmp/resume_uploads
env_file:
- ./backend/.env
networks:
- internal-network
depends_on:
backend:
condition: service_started
redis:
condition: service_started

networks:
public-network:
driver: bridge
Expand Down
Loading