Skip to content

Commit 01ca8a0

Browse files
committed
channges
1 parent 74f716a commit 01ca8a0

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ BACKEND_ENV_VARS = \
4545
HTTP_PORT=8000 \
4646
RUN_MODE=localdev \
4747
COPY_REQUEST_BODY=true \
48-
POSTGRES_DB=postgres://temporal:temporal@localhost:5432/temporal?sslmode=disable\
48+
POSTGRES_DB=postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable \
4949
LOGS_DIR=./logger/logs \
5050
SESSION_ON=true \
5151
TEMPORAL_ADDRESS=localhost:7233 \
52-
CONTAINER_REGISTRY_BASE=registry-1.docker.io
52+
CONTAINER_REGISTRY_BASE = registry-1.docker.io
5353

5454
# Frontend environment variables
5555
FRONTEND_ENV_VARS = \
@@ -78,4 +78,3 @@ start-temporal-server:
7878
# Create a user with specified username, password and email (e.g. make create-user username=admin password=admin123 [email protected])
7979
create-user:
8080
@curl -s -X POST http://localhost:8000/signup -H "Content-Type: application/json" -d "{\"username\":\"$(username)\",\"password\":\"$(password)\",\"email\":\"$(email)\"}" | grep -q "\"success\": true" && echo "User $(username) created successfully" || echo "Failed to create user $(username)"
81-

server/docker-compose.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ services:
2727
- temporal-network
2828
expose:
2929
- 5432
30-
ports:
31-
- "5432:5432"
32-
3330
volumes:
3431
- temporal-postgresql-data:/var/lib/postgresql/data
3532
temporal:

0 commit comments

Comments
 (0)