Skip to content

Commit 8aa1a6c

Browse files
committed
Remove release mode for local dev speed, todo add as profiles in future
1 parent 02b06d1 commit 8aa1a6c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Ingress
2-
TIPS_INGRESS_ADDRESS=127.0.0.1
2+
TIPS_INGRESS_ADDRESS=0.0.0.0
33
TIPS_INGRESS_PORT=8080
44
TIPS_INGRESS_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres
55
TIPS_INGRESS_RPC_MEMPOOL=http://localhost:2222

crates/audit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /app
55
COPY Cargo.toml Cargo.lock ./
66
COPY crates/ ./crates/
77

8-
RUN cargo build --release --bin tips-audit
8+
RUN cargo build --bin tips-audit
99

1010
FROM debian:bookworm
1111

crates/ingress/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ COPY Cargo.toml Cargo.lock ./
66
COPY crates/ ./crates/
77
COPY .sqlx/ ./.sqlx/
88

9-
RUN cargo build --release --bin tips-ingress
9+
RUN cargo build --bin tips-ingress
1010

1111
FROM debian:bookworm
1212

crates/maintenance/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ COPY Cargo.toml Cargo.lock ./
66
COPY crates/ ./crates/
77
COPY .sqlx/ ./.sqlx/
88

9-
RUN cargo build --release --bin tips-maintenance
9+
RUN cargo build --bin tips-maintenance
1010

1111
FROM debian:bookworm
1212

0 commit comments

Comments
 (0)