Skip to content

Commit

Permalink
style(Lint): fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
glaubervila committed Aug 28, 2024
1 parent 7d8a90f commit 3eea1e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/add_to_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
uses: actions/github-script@v6
with:
script: |
const projectName = "Software";
const columnName = "Backlog";
const projectName = "Software";
const columnName = "Backlog";
// Fetch the repository projects
const projects = await github.rest.projects.listForRepo({
owner: context.repo.owner,
Expand Down
2 changes: 1 addition & 1 deletion compose/local/docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
&& rm -rf /var/lib/apt/lists/*

# Requirements are installed here to ensure they will be cached.
COPY ./requirements /requirements
COPY ./backend/requirements /requirements

# create python dependency wheels
RUN pip wheel --no-cache-dir --wheel-dir /usr/src/app/wheels \
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ volumes:
production_postgres_data_backups: {}
production_traefik: {}
production_django_media: {}

production_redis_data: {}



services:
Expand Down Expand Up @@ -52,10 +52,10 @@ services:

redis:
image: docker.io/redis:6

volumes:
- production_redis_data:/data


celeryworker:
<<: *django
Expand Down

0 comments on commit 3eea1e9

Please sign in to comment.