planner/Makefile

7 lines
318 B
Makefile
Raw Normal View History

2024-09-07 12:10:48 +02:00
2024-09-10 14:30:05 +02:00
sync-run:
2024-09-18 18:04:27 +02:00
cd sync/service && PLANNER_DB_HOST=localhost PLANNER_DB_PORT=5432 PLANNER_DB_NAME=planner PLANNER_DB_USER=test PLANNER_DB_PASSWORD=test PLANNER_PORT=8092 PLANNER_API_KEY=testKey go run .
2024-09-10 14:30:05 +02:00
2024-09-18 18:04:27 +02:00
database:
docker run -e POSTGRES_USER=test -e POSTGRES_PASSWORD=test -e POSTGRES_DB=planner -p 5432:5432 postgres:16