Skip to content

Commit

Permalink
update compose and dags for slower local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbull committed Jun 30, 2024
1 parent b2eadb3 commit 1239a0f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion airflow/dags/bodhi_waves_to_sl_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
start_date=start_date,
schedule="0 10 * * *",
catchup=False,
is_paused_upon_creation=False,
is_paused_upon_creation=True,
)
def taskflow():
def fetch_wave_data(lat_lon_str):
Expand Down
2 changes: 1 addition & 1 deletion airflow/dags/sl_data_etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
start_date=start_date,
schedule="30 9 * * *",
catchup=False,
is_paused_upon_creation=False,
is_paused_upon_creation=True,
)
def taskflow():
@task()
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ services:
ports:
- "80:80"
command: bin/sh -c "sleep 110; nginx -g 'daemon off;'"
depends_on:
backend:
condition: service_healthy
# depends_on:
# backend:
# condition: service_healthy

backend:
build:
Expand Down
2 changes: 1 addition & 1 deletion frontend/frontend.dev.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim as build
FROM node:20-slim AS build

# Build the react app
WORKDIR /usr/src/app
Expand Down

0 comments on commit 1239a0f

Please sign in to comment.