15 lines
206 B
Bash
15 lines
206 B
Bash
|
|
# Server
|
||
|
|
PORT=8080
|
||
|
|
GIN_MODE=debug
|
||
|
|
SESSION_SECRET=
|
||
|
|
|
||
|
|
# Data directory (cloned repos, etc.)
|
||
|
|
DATA_DIR=data
|
||
|
|
|
||
|
|
# MySQL
|
||
|
|
MYSQL_HOST=127.0.0.1
|
||
|
|
MYSQL_PORT=3306
|
||
|
|
MYSQL_USER=root
|
||
|
|
MYSQL_PASSWORD=
|
||
|
|
MYSQL_DATABASE=pr_helper
|