Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 449 Bytes

File metadata and controls

22 lines (15 loc) · 449 Bytes

Environment Variables

Create a .env file or set the following environment variables before running the project:

# .env.example

# Application name
SPRING_APPLICATION_NAME=

# Admin configuration
ADMIN_USERNAME=
ADMIN_PASSWORD=

# Cache configuration
SERVER_COMPRESSION_MIN_RESPONSE_SIZE=1024 # example value

# JWT Configuration
JWT_SECRET_KEY=

Note: Replace the values according to your environment and security requirements.