32 lines
585 B
Plaintext
32 lines
585 B
Plaintext
# Server configuration
|
|
ENV=development
|
|
HOST="0.0.0.0"
|
|
PORT=4000
|
|
JWT_SECRET="secret"
|
|
CLIENT_URL="http://localhost:5173"
|
|
|
|
# Database configuration
|
|
REDIS_URL="redis://@127.0.0.1:6379/4"
|
|
DB_HOST="localhost"
|
|
DB_USER="root"
|
|
DB_PASS=""
|
|
DB_PORT="3306"
|
|
DB_NAME="game"
|
|
|
|
# Game configuration
|
|
ALLOW_DIAGONAL_MOVEMENT=false
|
|
|
|
# Default character create values
|
|
DEFAULT_CHARACTER_ZONE="0"
|
|
DEFAULT_CHARACTER_POS_X="0"
|
|
DEFAULT_CHARACTER_POS_Y="0"
|
|
|
|
# Email configuration
|
|
SMTP_HOST=my.directonline.io
|
|
SMTP_PORT=587
|
|
SMTP_USER=no-reply@noxious.gg
|
|
SMTP_PASSWORD=""
|
|
|
|
# SSL
|
|
#PUBLIC_KEY_PATH=
|
|
#PRIVATE_KEY_PATH= |