mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 17:11:23 +00:00
16 lines
501 B
Bash
16 lines
501 B
Bash
#!/bin/bash
|
|
|
|
export POSTGRES_USER=postgres
|
|
export POSTGRES_PASSWORD=password
|
|
export POSTGRES_PORT=5433
|
|
export POSTGRES_HOST=localhost
|
|
export POSTGRES_DB=flowy
|
|
|
|
export DB_USER="${POSTGRES_USER:=postgres}"
|
|
export DB_PASSWORD="${POSTGRES_PASSWORD:=password}"
|
|
export DB_PORT="${POSTGRES_PORT:=5433}"
|
|
export DB_HOST="${POSTGRES_HOST:=localhost}"
|
|
export DB_NAME="${POSTGRES_DB:=flowy}"
|
|
|
|
export BACKEND_VERSION="v0.0.1"
|
|
export DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@localhost:${DB_PORT}/${DB_NAME} |